pub struct Array<'a> {
pub accession: &'a str,
pub order: usize,
pub start: usize,
pub end: usize,
pub consensus_repeat_sequence: &'a str,
pub repeat_spacers: Vec<RepeatSpacer<'a>>,
}
Expand description
A single CRISPR array.
Fields§
§accession: &'a str
Accession of the contig/genome.
order: usize
The Nth CRISPR array in the PILER-CR output.
start: usize
Zero-indexed, inclusive start coordinate.
end: usize
Zero-indexed, exclusive end coordinate.
consensus_repeat_sequence: &'a str
The consensus repeat sequence for this array. May include gaps.
repeat_spacers: Vec<RepeatSpacer<'a>>
The repeat-spacers in this array.
Trait Implementations§
impl<'a> StructuralPartialEq for Array<'a>
Auto Trait Implementations§
impl<'a> Freeze for Array<'a>
impl<'a> RefUnwindSafe for Array<'a>
impl<'a> Send for Array<'a>
impl<'a> Sync for Array<'a>
impl<'a> Unpin for Array<'a>
impl<'a> UnwindSafe for Array<'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