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
This method 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> 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