pub enum CsvLeftRightParseResult<R> {
Left(R),
Right(R),
}
Variantsยง
Trait Implementationsยง
Sourceยงimpl<R: Clone> Clone for CsvLeftRightParseResult<R>
impl<R: Clone> Clone for CsvLeftRightParseResult<R>
Sourceยงfn clone(&self) -> CsvLeftRightParseResult<R>
fn clone(&self) -> CsvLeftRightParseResult<R>
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<R> CsvParseResult<CsvLeftRightParseResult<R>, R> for CsvParseResultLeft<R>
impl<R> CsvParseResult<CsvLeftRightParseResult<R>, R> for CsvParseResultLeft<R>
fn new(record_hash: R) -> Self
fn into_payload(self) -> CsvLeftRightParseResult<R>
Sourceยงimpl<R> CsvParseResult<CsvLeftRightParseResult<R>, R> for CsvParseResultRight<R>
impl<R> CsvParseResult<CsvLeftRightParseResult<R>, R> for CsvParseResultRight<R>
fn new(record_hash: R) -> Self
fn into_payload(self) -> CsvLeftRightParseResult<R>
Sourceยงimpl<R: Debug> Debug for CsvLeftRightParseResult<R>
impl<R: Debug> Debug for CsvLeftRightParseResult<R>
Sourceยงimpl<R: PartialEq> PartialEq for CsvLeftRightParseResult<R>
impl<R: PartialEq> PartialEq for CsvLeftRightParseResult<R>
Sourceยงfn eq(&self, other: &CsvLeftRightParseResult<R>) -> bool
fn eq(&self, other: &CsvLeftRightParseResult<R>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<R: Copy> Copy for CsvLeftRightParseResult<R>
impl<R> StructuralPartialEq for CsvLeftRightParseResult<R>
Auto Trait Implementationsยง
impl<R> Freeze for CsvLeftRightParseResult<R>where
R: Freeze,
impl<R> RefUnwindSafe for CsvLeftRightParseResult<R>where
R: RefUnwindSafe,
impl<R> Send for CsvLeftRightParseResult<R>where
R: Send,
impl<R> Sync for CsvLeftRightParseResult<R>where
R: Sync,
impl<R> Unpin for CsvLeftRightParseResult<R>where
R: Unpin,
impl<R> UnwindSafe for CsvLeftRightParseResult<R>where
R: UnwindSafe,
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ยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more