pub struct Contig<'a> {
pub accession: &'a str,
pub bp: usize,
pub arrays: Vec<Array<'a>>,
}
Expand description
Represents all of the CRISPR arrays in a single contig or genome.
Fields§
§accession: &'a str
Accession of the contig/genome.
bp: usize
Length of the contig/genome in base pairs.
arrays: Vec<Array<'a>>
The CRISPR arrays in this contig/genome.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Contig<'a>
impl<'a> RefUnwindSafe for Contig<'a>
impl<'a> Send for Contig<'a>
impl<'a> Sync for Contig<'a>
impl<'a> Unpin for Contig<'a>
impl<'a> UnwindSafe for Contig<'a>
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