pub enum MeasuredRecord {
Measured(NonZeroUsize),
Done,
}
Expand description
A type that encapsulates the result of measuring the next record.
Variants§
Measured(NonZeroUsize)
A record was measured. This record may be skipped once it is actually parsed.
Done
All possible records have been already been consumed; there is nothing left to parse.
Auto Trait Implementations§
impl Freeze for MeasuredRecord
impl RefUnwindSafe for MeasuredRecord
impl Send for MeasuredRecord
impl Sync for MeasuredRecord
impl Unpin for MeasuredRecord
impl UnwindSafe for MeasuredRecord
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