Enum noodles_vcf::record::alternate_bases::allele::ParseError
source ·
[−]pub enum ParseError {
Empty,
InvalidSymbol(ParseError),
InvalidBase(TryFromCharError),
}
Expand description
An error returned when a raw alternate bases allele fails to parse.
Variants
Empty
The input is empty.
InvalidSymbol(ParseError)
Tuple Fields
0: ParseError
The symbol is invalid.
InvalidBase(TryFromCharError)
Tuple Fields
A base 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.