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§
sourcefn description(&self) -> &str
fn description(&self) -> &str
Returns the description.
sourcefn description_mut(&mut self) -> &mut String
fn description_mut(&mut self) -> &mut String
Returns a mutable reference to the description.
Object Safety§
This trait is not object safe.