Enum noodles_vcf::record::info::ParseError
source ·
[−]pub enum ParseError {
Empty,
Invalid(TryFromFieldsError),
InvalidField(ParseError),
}
Expand description
An error returned when a raw VCF information fails to parse.
Variants
Empty
The input is empty.
Invalid(TryFromFieldsError)
Tuple Fields
The input is invalid.
InvalidField(ParseError)
Tuple Fields
0: ParseError
A field 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.