Enum noodles_vcf::record::EndError [−][src]
pub enum EndError {
InvalidPosition(TryFromIntError),
InvalidInfoEndPositionFieldValue,
InvalidReferenceBasesLength(TryFromIntError),
PositionOverflow(i32, i32),
}
Expand description
An error returned when the end position is invalid.
Variants
InvalidPosition(TryFromIntError)
The position is invalid.
Tuple Fields of InvalidPosition
The INFO end position (END
) field value type is invalid.
InvalidReferenceBasesLength(TryFromIntError)
The reference bases length is invalid (> i32::MAX
).
Tuple Fields of InvalidReferenceBasesLength
The calculation of the end position overflowed.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for EndError
impl UnwindSafe for EndError
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.