pub struct CopyCsvFormatParams<'a> {
pub delimiter: u8,
pub quote: u8,
pub escape: u8,
pub header: bool,
pub null: Cow<'a, str>,
}
Fields§
§delimiter: u8
§quote: u8
§escape: u8
§header: bool
§null: Cow<'a, str>
Implementations§
Trait Implementations§
Source§impl Arbitrary for CopyCsvFormatParams<'static>
impl Arbitrary for CopyCsvFormatParams<'static>
Source§type Parameters = ()
type Parameters = ()
The type of parameters that
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.Source§type Strategy = BoxedStrategy<CopyCsvFormatParams<'static>>
type Strategy = BoxedStrategy<CopyCsvFormatParams<'static>>
The type of
Strategy
used to generate values of type Self
.Source§fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy
fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy
Source§impl<'a> Clone for CopyCsvFormatParams<'a>
impl<'a> Clone for CopyCsvFormatParams<'a>
Source§fn clone(&self) -> CopyCsvFormatParams<'a>
fn clone(&self) -> CopyCsvFormatParams<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for CopyCsvFormatParams<'a>
impl<'a> Debug for CopyCsvFormatParams<'a>
Source§impl<'a> Default for CopyCsvFormatParams<'a>
impl<'a> Default for CopyCsvFormatParams<'a>
Source§impl<'de, 'a> Deserialize<'de> for CopyCsvFormatParams<'a>
impl<'de, 'a> Deserialize<'de> for CopyCsvFormatParams<'a>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> PartialEq for CopyCsvFormatParams<'a>
impl<'a> PartialEq for CopyCsvFormatParams<'a>
Source§impl RustType<ProtoCopyCsvFormatParams> for CopyCsvFormatParams<'static>
impl RustType<ProtoCopyCsvFormatParams> for CopyCsvFormatParams<'static>
Source§fn into_proto(&self) -> ProtoCopyCsvFormatParams
fn into_proto(&self) -> ProtoCopyCsvFormatParams
Convert a
Self
into a Proto
value.Source§fn from_proto(
proto: ProtoCopyCsvFormatParams,
) -> Result<Self, TryFromProtoError>
fn from_proto( proto: ProtoCopyCsvFormatParams, ) -> Result<Self, TryFromProtoError>
Source§fn into_proto_owned(self) -> Proto
fn into_proto_owned(self) -> Proto
A zero clone version of
Self::into_proto
that types can
optionally implement, otherwise, the default implementation
delegates to Self::into_proto
.Source§impl<'a> Serialize for CopyCsvFormatParams<'a>
impl<'a> Serialize for CopyCsvFormatParams<'a>
impl<'a> Eq for CopyCsvFormatParams<'a>
impl<'a> StructuralPartialEq for CopyCsvFormatParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for CopyCsvFormatParams<'a>
impl<'a> RefUnwindSafe for CopyCsvFormatParams<'a>
impl<'a> Send for CopyCsvFormatParams<'a>
impl<'a> Sync for CopyCsvFormatParams<'a>
impl<'a> Unpin for CopyCsvFormatParams<'a>
impl<'a> UnwindSafe for CopyCsvFormatParams<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Source§impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ProgressEventTimestamp for T
impl<T> ProgressEventTimestamp for T
Source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
Source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.Source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.Source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.