pub struct HeaderField {
pub id: String,
pub type: String,
pub number: String,
pub description: String,
}Expand description
Represents a field definition from the VCF header (INFO, FORMAT, or FILTER).
Fields§
§id: StringThe field ID (e.g., “DP”, “GQ”).
type: StringThe field type (“Integer”, “Float”, “String”, “Flag”).
number: StringThe Number field (“1”, “A”, “R”, “G”, “.”).
description: StringThe description from the header.
Trait Implementations§
Source§impl Clone for HeaderField
impl Clone for HeaderField
Source§fn clone(&self) -> HeaderField
fn clone(&self) -> HeaderField
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 moreAuto Trait Implementations§
impl Freeze for HeaderField
impl RefUnwindSafe for HeaderField
impl Send for HeaderField
impl Sync for HeaderField
impl Unpin for HeaderField
impl UnwindSafe for HeaderField
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