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 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl 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
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 Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more