pub struct CutSite {
pub position: usize,
pub enzyme: String,
pub overhang: Overhang,
}Expand description
A located cut site on a sequence.
Fields§
§position: usizePosition in the original sequence where the forward strand is cut.
enzyme: StringName of the enzyme that cuts here.
overhang: OverhangType of overhang produced.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CutSite
impl RefUnwindSafe for CutSite
impl Send for CutSite
impl Sync for CutSite
impl Unpin for CutSite
impl UnsafeUnpin for CutSite
impl UnwindSafe for CutSite
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