Enum noodles_vcf::record::reference_bases::ParseError [−][src]
pub enum ParseError {
Empty,
Missing,
InvalidBase(TryFromCharError),
}
Expand description
An error returned when raw VCF reference bases fail to parse.
Variants
Empty
The input is empty.
Missing
The input is missing (.
).
InvalidBase(TryFromCharError)
Tuple Fields
The input has an invalid base.
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.