pub struct SequencesSection {
pub num_sequences: usize,
pub sequences: Vec<Sequence>,
}Expand description
Parsed sequences section.
Fields§
§num_sequences: usizeNumber of sequences.
sequences: Vec<Sequence>The decoded sequences.
Implementations§
Trait Implementations§
Source§impl Clone for SequencesSection
impl Clone for SequencesSection
Source§fn clone(&self) -> SequencesSection
fn clone(&self) -> SequencesSection
Returns a duplicate of the value. Read more
1.0.0 · 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 SequencesSection
impl RefUnwindSafe for SequencesSection
impl Send for SequencesSection
impl Sync for SequencesSection
impl Unpin for SequencesSection
impl UnwindSafe for SequencesSection
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