pub struct SegmentPart {
pub kmer1: u64,
pub kmer2: u64,
pub sample_name: String,
pub contig_name: String,
pub seg_data: Vec<u8>,
pub is_rev_comp: bool,
pub seg_part_no: u32,
}Expand description
Segment part for inline buffering
Fields§
§kmer1: u64§kmer2: u64§sample_name: String§contig_name: String§seg_data: Vec<u8>§is_rev_comp: bool§seg_part_no: u32Trait Implementations§
Source§impl Clone for SegmentPart
impl Clone for SegmentPart
Source§fn clone(&self) -> SegmentPart
fn clone(&self) -> SegmentPart
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SegmentPart
impl RefUnwindSafe for SegmentPart
impl Send for SegmentPart
impl Sync for SegmentPart
impl Unpin for SegmentPart
impl UnwindSafe for SegmentPart
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more