pub struct Record {
pub seqid: String,
pub source: String,
pub feature_type: String,
pub start: u64,
pub end: u64,
pub score: String,
pub strand: Strand,
pub phase: String,
pub attributes: Attributes,
}Expand description
A single GFF/GTF feature line.
score and phase are kept as raw strings rather than parsed numbers so we
never lose or reformat the original token (important for byte-parity).
Fields§
§seqid: String§source: String§feature_type: String§start: u64§end: u64§score: String§strand: Strand§phase: String§attributes: AttributesImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnsafeUnpin for Record
impl UnwindSafe for Record
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