pub struct Fragment {
pub start: usize,
pub end: usize,
pub length: usize,
}Expand description
A fragment produced by restriction digestion.
Fields§
§start: usizeStart position in the original sequence (inclusive).
end: usizeEnd position in the original sequence (exclusive).
length: usizeFragment length.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Fragment
impl RefUnwindSafe for Fragment
impl Send for Fragment
impl Sync for Fragment
impl Unpin for Fragment
impl UnsafeUnpin for Fragment
impl UnwindSafe for Fragment
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