Enum csv_core::ReadFieldNoCopyResult
source · [−]pub enum ReadFieldNoCopyResult {
InputEmpty,
Field {
record_end: bool,
},
End,
}
Expand description
The result of parsing at most one field from CSV data while ignoring the output.
Variants
InputEmpty
The caller provided input was exhausted before the end of a field or record was found.
Field
Fields
record_end: bool
Whether this was the last field in a record or not.
The end of a field was found.
Note that when record_end
is true, then the end of this field also
corresponds to the end of a record.
End
All CSV data has been read.
This state can only be returned when an empty input buffer is provided by the caller.
Trait Implementations
sourceimpl Clone for ReadFieldNoCopyResult
impl Clone for ReadFieldNoCopyResult
sourcefn clone(&self) -> ReadFieldNoCopyResult
fn clone(&self) -> ReadFieldNoCopyResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ReadFieldNoCopyResult
impl Debug for ReadFieldNoCopyResult
sourceimpl PartialEq<ReadFieldNoCopyResult> for ReadFieldNoCopyResult
impl PartialEq<ReadFieldNoCopyResult> for ReadFieldNoCopyResult
sourcefn eq(&self, other: &ReadFieldNoCopyResult) -> bool
fn eq(&self, other: &ReadFieldNoCopyResult) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ReadFieldNoCopyResult) -> bool
fn ne(&self, other: &ReadFieldNoCopyResult) -> bool
This method tests for !=
.
impl Eq for ReadFieldNoCopyResult
impl StructuralEq for ReadFieldNoCopyResult
impl StructuralPartialEq for ReadFieldNoCopyResult
Auto Trait Implementations
impl RefUnwindSafe for ReadFieldNoCopyResult
impl Send for ReadFieldNoCopyResult
impl Sync for ReadFieldNoCopyResult
impl Unpin for ReadFieldNoCopyResult
impl UnwindSafe for ReadFieldNoCopyResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more