pub struct GtfRecord {
pub seqname: Vec<u8>,
pub source: Vec<u8>,
pub feature: Vec<u8>,
pub start: usize,
pub end: usize,
pub score: Vec<u8>,
pub strand: Vec<u8>,
pub frame: Vec<u8>,
pub attribute: Attribute,
}Fields§
§seqname: Vec<u8>§source: Vec<u8>§feature: Vec<u8>§start: usize§end: usize§score: Vec<u8>§strand: Vec<u8>§frame: Vec<u8>§attribute: AttributeImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GtfRecord
impl<'de> Deserialize<'de> for GtfRecord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GtfRecord
impl RefUnwindSafe for GtfRecord
impl Send for GtfRecord
impl Sync for GtfRecord
impl Unpin for GtfRecord
impl UnsafeUnpin for GtfRecord
impl UnwindSafe for GtfRecord
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