#[non_exhaustive]pub struct EnrichedContig {
pub name: String,
pub md5: Option<String>,
pub refget_metadata: RefgetLookupResult,
}Expand description
A contig enriched with optional refget metadata.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringName of the contig.
md5: Option<String>MD5 digest used for the lookup, if available.
refget_metadata: RefgetLookupResultResult of the refget lookup.
Trait Implementations§
Source§impl Clone for EnrichedContig
impl Clone for EnrichedContig
Source§fn clone(&self) -> EnrichedContig
fn clone(&self) -> EnrichedContig
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 EnrichedContig
impl Debug for EnrichedContig
Auto Trait Implementations§
impl Freeze for EnrichedContig
impl RefUnwindSafe for EnrichedContig
impl Send for EnrichedContig
impl Sync for EnrichedContig
impl Unpin for EnrichedContig
impl UnsafeUnpin for EnrichedContig
impl UnwindSafe for EnrichedContig
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