Enum csv_core::ReadFieldResult
source · [−]pub enum ReadFieldResult {
InputEmpty,
OutputFull,
Field {
record_end: bool,
},
End,
}
Expand description
The result of parsing at most one field from CSV data.
Variants
InputEmpty
The caller provided input was exhausted before the end of a field or record was found.
OutputFull
The caller provided output buffer was filled before an entire field could be written to it.
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 ReadFieldResult
impl Clone for ReadFieldResult
sourcefn clone(&self) -> ReadFieldResult
fn clone(&self) -> ReadFieldResult
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 ReadFieldResult
impl Debug for ReadFieldResult
sourceimpl PartialEq<ReadFieldResult> for ReadFieldResult
impl PartialEq<ReadFieldResult> for ReadFieldResult
sourcefn eq(&self, other: &ReadFieldResult) -> bool
fn eq(&self, other: &ReadFieldResult) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ReadFieldResult) -> bool
fn ne(&self, other: &ReadFieldResult) -> bool
This method tests for !=
.
impl Eq for ReadFieldResult
impl StructuralEq for ReadFieldResult
impl StructuralPartialEq for ReadFieldResult
Auto Trait Implementations
impl RefUnwindSafe for ReadFieldResult
impl Send for ReadFieldResult
impl Sync for ReadFieldResult
impl Unpin for ReadFieldResult
impl UnwindSafe for ReadFieldResult
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