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<CsvLeftRightParseResult<R>> for CsvLeftRightParseResult<R>
impl<R: PartialEq> PartialEq<CsvLeftRightParseResult<R>> 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 ==
.