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
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§
source§impl Clone for ReadFieldResult
impl Clone for ReadFieldResult
source§fn clone(&self) -> ReadFieldResult
fn clone(&self) -> ReadFieldResult
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 Debug for ReadFieldResult
impl Debug for ReadFieldResult
source§impl PartialEq for ReadFieldResult
impl PartialEq for ReadFieldResult
source§fn 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 ==
.impl Eq for ReadFieldResult
impl StructuralPartialEq for ReadFieldResult
Auto Trait Implementations§
impl Freeze for ReadFieldResult
impl RefUnwindSafe for ReadFieldResult
impl Send for ReadFieldResult
impl Sync for ReadFieldResult
impl Unpin for ReadFieldResult
impl UnwindSafe for ReadFieldResult
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)