Enum noodles_vcf::header::parser::FileFormatOption
source · pub enum FileFormatOption {
Auto,
FileFormat(FileFormat),
}Expand description
A VCF header parser file format option.
Variants§
Auto
Use the file format defined in the header.
FileFormat(FileFormat)
Override the file format with the given version.
Trait Implementations§
source§impl Debug for FileFormatOption
impl Debug for FileFormatOption
source§impl Default for FileFormatOption
impl Default for FileFormatOption
source§fn default() -> FileFormatOption
fn default() -> FileFormatOption
Returns the “default value” for a type. Read more
source§impl PartialEq for FileFormatOption
impl PartialEq for FileFormatOption
source§fn eq(&self, other: &FileFormatOption) -> bool
fn eq(&self, other: &FileFormatOption) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for FileFormatOption
impl StructuralPartialEq for FileFormatOption
Auto Trait Implementations§
impl Freeze for FileFormatOption
impl RefUnwindSafe for FileFormatOption
impl Send for FileFormatOption
impl Sync for FileFormatOption
impl Unpin for FileFormatOption
impl UnwindSafe for FileFormatOption
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.