noodles_vcf/header/parser/file_format_option.rs
1use crate::header::parser::FileFormat;
2
3/// A VCF header parser file format option.
4#[derive(Debug, Default, Eq, PartialEq)]
5pub enum FileFormatOption {
6 /// Use the file format defined in the header.
7 #[default]
8 Auto,
9 /// Override the file format with the given version.
10 FileFormat(FileFormat),
11}