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.
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.