pub struct Array<'a> {
pub order: usize,
pub start: usize,
pub end: usize,
pub repeat_spacers: Vec<Repeat<'a>>,
}
Expand description
A single CRISPR array.
Fields§
§order: usize
The nth CRISPR array in this genome/contig.
start: usize
Zero-indexed inclusive start coordinate.
end: usize
Zero-indexed exclusive end coordinate.
repeat_spacers: Vec<Repeat<'a>>
All of the repeat-spacer pairs in this CRISPR 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