pub struct RepeatOnly<'a> {
pub repeat: &'a str,
pub start: usize,
pub end: usize,
}
Expand description
A single repeat, without a spacer. This is the last repeat in the CRISPR array.
Fields§
§repeat: &'a str
Sequence of the repeat.
start: usize
Zero-indexed inclusive start coordinate.
end: usize
Zero-indexed exclusive end coordinate.
Trait Implementations§
Source§impl<'a> Debug for RepeatOnly<'a>
impl<'a> Debug for RepeatOnly<'a>
Source§impl<'a> PartialEq for RepeatOnly<'a>
impl<'a> PartialEq for RepeatOnly<'a>
impl<'a> StructuralPartialEq for RepeatOnly<'a>
Auto Trait Implementations§
impl<'a> Freeze for RepeatOnly<'a>
impl<'a> RefUnwindSafe for RepeatOnly<'a>
impl<'a> Send for RepeatOnly<'a>
impl<'a> Sync for RepeatOnly<'a>
impl<'a> Unpin for RepeatOnly<'a>
impl<'a> UnwindSafe for RepeatOnly<'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