pub enum Parsed {
Record(Box<ParsedRecord>),
Skipped,
Unparseable,
}Expand description
What one source line yielded.
Variants§
Record(Box<ParsedRecord>)
A normalized record.
Skipped
A line the adapter understands and deliberately ignores (a record type that carries no usage). Not an error, and never counted as unparseable.
Unparseable
A line the adapter could not make sense of. Counted and reported; it never fails the run, because the source schema is undocumented and drifts between versions.
Trait Implementations§
impl StructuralPartialEq for Parsed
Auto Trait Implementations§
impl Freeze for Parsed
impl RefUnwindSafe for Parsed
impl Send for Parsed
impl Sync for Parsed
impl Unpin for Parsed
impl UnsafeUnpin for Parsed
impl UnwindSafe for Parsed
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