pub struct ContigLocation {
pub assembly_id: String,
pub version_id: String,
pub distribution_id: String,
pub contig_index: usize,
}Expand description
Location of a contig in the catalog
Fields§
§assembly_id: StringAssembly ID (empty for standalone distributions)
version_id: StringVersion ID (empty for standalone distributions)
distribution_id: StringDistribution ID
contig_index: usizeIndex in distribution’s contig list
Trait Implementations§
Source§impl Clone for ContigLocation
impl Clone for ContigLocation
Source§fn clone(&self) -> ContigLocation
fn clone(&self) -> ContigLocation
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 moreSource§impl Debug for ContigLocation
impl Debug for ContigLocation
Source§impl PartialEq for ContigLocation
impl PartialEq for ContigLocation
impl StructuralPartialEq for ContigLocation
Auto Trait Implementations§
impl Freeze for ContigLocation
impl RefUnwindSafe for ContigLocation
impl Send for ContigLocation
impl Sync for ContigLocation
impl Unpin for ContigLocation
impl UnwindSafe for ContigLocation
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