pub enum LineBuf {
Directive(DirectiveBuf),
Comment(String),
Record(RecordBuf),
}
Expand description
A GFF line.
Variants§
Directive(DirectiveBuf)
A directive (##
).
Comment(String)
A comment (#
),
Record(RecordBuf)
A record.
Trait Implementations§
impl StructuralPartialEq for LineBuf
Auto Trait Implementations§
impl Freeze for LineBuf
impl RefUnwindSafe for LineBuf
impl Send for LineBuf
impl Sync for LineBuf
impl Unpin for LineBuf
impl UnwindSafe for LineBuf
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