Enum noodles_vcf::record::EndError
source ·
[−]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)
Tuple Fields
The position is invalid.
InvalidInfoEndPositionFieldValue
The INFO end position (END
) field value type is invalid.
InvalidReferenceBasesLength(TryFromIntError)
Tuple Fields
The reference bases length is invalid (> i32::MAX
).
PositionOverflow(i32, i32)
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.