pub struct FoldedLine {
pub line: usize,
pub id: String,
pub ts: Timestamp,
}Expand description
One physical line that carried a parsed record, in file order. Archive needs
the line numbers and per-ID groupings the fold already walks past; carrying
them out of the fold is what keeps plan_archive to a single parse.
Fields§
§line: usize§id: String§ts: TimestampTrait Implementations§
Source§impl Clone for FoldedLine
impl Clone for FoldedLine
Source§fn clone(&self) -> FoldedLine
fn clone(&self) -> FoldedLine
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FoldedLine
impl RefUnwindSafe for FoldedLine
impl Send for FoldedLine
impl Sync for FoldedLine
impl Unpin for FoldedLine
impl UnsafeUnpin for FoldedLine
impl UnwindSafe for FoldedLine
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