pub struct Sequence {
pub sequence: Option<Vec<u8, Global>>,
pub scores: Option<Vec<u8, Global>>,
pub header: Option<String>,
pub id: Option<String>,
pub offset: usize,
}Fields
sequence: Option<Vec<u8, Global>>scores: Option<Vec<u8, Global>>header: Option<String>id: Option<String>offset: usizePrimarily used downstream, but when used for random access this is the offset from the start of the sequence
Trait Implementations
impl Eq for Sequence
impl StructuralEq for Sequence
impl StructuralPartialEq for Sequence
Auto Trait Implementations
impl RefUnwindSafe for Sequence
impl Send for Sequence
impl Sync for Sequence
impl Unpin for Sequence
impl UnwindSafe for Sequence
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more