pub enum Overhang {
FivePrime(Vec<u8>),
ThreePrime(Vec<u8>),
Blunt,
}Expand description
Overhang type produced by a restriction enzyme cut.
Variants§
FivePrime(Vec<u8>)
5’ overhang (sticky end).
ThreePrime(Vec<u8>)
3’ overhang (sticky end).
Blunt
Blunt end (no overhang).
Trait Implementations§
impl Eq for Overhang
impl StructuralPartialEq for Overhang
Auto Trait Implementations§
impl Freeze for Overhang
impl RefUnwindSafe for Overhang
impl Send for Overhang
impl Sync for Overhang
impl Unpin for Overhang
impl UnsafeUnpin for Overhang
impl UnwindSafe for Overhang
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