pub struct KitAdapter {
pub name: &'static str,
pub seq_r1: &'static [u8],
pub seq_r2: Option<&'static [u8]>,
}Expand description
A named adapter preset. When seq_r2 is None the preset covers R1-only libraries
(historically single-end such as small-RNA-seq) or the R1 adapter is also used on R2.
Fields§
§name: &'static str§seq_r1: &'static [u8]§seq_r2: Option<&'static [u8]>Trait Implementations§
Source§impl Clone for KitAdapter
impl Clone for KitAdapter
Source§fn clone(&self) -> KitAdapter
fn clone(&self) -> KitAdapter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for KitAdapter
Source§impl Debug for KitAdapter
impl Debug for KitAdapter
impl Eq for KitAdapter
Source§impl PartialEq for KitAdapter
impl PartialEq for KitAdapter
impl StructuralPartialEq for KitAdapter
Auto Trait Implementations§
impl Freeze for KitAdapter
impl RefUnwindSafe for KitAdapter
impl Send for KitAdapter
impl Sync for KitAdapter
impl Unpin for KitAdapter
impl UnsafeUnpin for KitAdapter
impl UnwindSafe for KitAdapter
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