noodles_vcf::header::record::value::map

Trait Described

Source
pub trait Described: Inner {
    // Required methods
    fn description(&self) -> &str;
    fn description_mut(&mut self) -> &mut String;
}
Expand description

An inner VCF header map value with a description field.

Required Methods§

Source

fn description(&self) -> &str

Returns the description.

Source

fn description_mut(&mut self) -> &mut String

Returns a mutable reference to the description.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§