pub struct ContigDesc {
pub name: String,
pub segments: Vec<SegmentDesc>,
}Expand description
A contig with its name and segments
Fields§
§name: String§segments: Vec<SegmentDesc>Implementations§
Trait Implementations§
Source§impl Clone for ContigDesc
impl Clone for ContigDesc
Source§fn clone(&self) -> ContigDesc
fn clone(&self) -> ContigDesc
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 ContigDesc
impl RefUnwindSafe for ContigDesc
impl Send for ContigDesc
impl Sync for ContigDesc
impl Unpin for ContigDesc
impl UnwindSafe for ContigDesc
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