Enum noodles_vcf::variant::record_buf::samples::sample::value::Value
source · pub enum Value {
Integer(i32),
Float(f32),
Character(char),
String(String),
Genotype(Genotype),
Array(Array),
}
Expand description
A variant record samples field value.
Variants§
Integer(i32)
A 32-bit integer.
Float(f32)
A single-precision floating-point.
Character(char)
A character.
String(String)
A string.
Genotype(Genotype)
A genotype.
Array(Array)
An array.
Trait Implementations§
source§impl PartialEq for Value
impl PartialEq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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