pub enum Meta {
ReferenceGenome(SlotMetaReferenceGenome),
GeneAnnotations(SlotMetaGeneAnnotations),
SnpIndelCalls(SlotMetaSnpIndelCalls),
VariantCatalog(SlotMetaVariantCatalog),
}Expand description
Slot-type-specific metadata, set when the device has information about this slot (either filled or dependencies provide enough context).
Variants§
ReferenceGenome(SlotMetaReferenceGenome)
GeneAnnotations(SlotMetaGeneAnnotations)
SnpIndelCalls(SlotMetaSnpIndelCalls)
VariantCatalog(SlotMetaVariantCatalog)
Implementations§
Source§impl Meta
impl Meta
Sourcepub fn merge(
field: &mut Option<Meta>,
tag: u32,
wire_type: WireType,
buf: &mut impl Buf,
ctx: DecodeContext,
) -> Result<(), DecodeError>
pub fn merge( field: &mut Option<Meta>, tag: u32, wire_type: WireType, buf: &mut impl Buf, ctx: DecodeContext, ) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into self.
Sourcepub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Trait Implementations§
impl Eq for Meta
impl StructuralPartialEq for Meta
Auto Trait Implementations§
impl Freeze for Meta
impl RefUnwindSafe for Meta
impl Send for Meta
impl Sync for Meta
impl Unpin for Meta
impl UnsafeUnpin for Meta
impl UnwindSafe for Meta
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