Enum noodles_vcf::record::position::ParseError [−][src]
pub enum ParseError {
Parse(ParseIntError),
Invalid(TryFromIntError),
}
Expand description
An error returned when a raw VCF record position fails to parse.
Variants
Parse(ParseIntError)
The input failed to parse as an integer.
Tuple Fields of Parse
Invalid(TryFromIntError)
The input is invalid.
Tuple Fields of 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.