Enum noodles_vcf::record::info::field::ParseError
source ·
[−]pub enum ParseError {
MissingKey,
InvalidKey(ParseError),
MissingValue,
InvalidValue(ParseError),
}
Expand description
An error returned when a raw VCF record info field fails to parse.
Variants
MissingKey
The key is missing.
InvalidKey(ParseError)
Tuple Fields
0: ParseError
The key is invalid.
MissingValue
The value is missing.
InvalidValue(ParseError)
Tuple Fields
0: ParseError
The value is invalid.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ParseError
impl Send for ParseError
impl Sync for ParseError
impl Unpin for ParseError
impl UnwindSafe for ParseError
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.