Enum bio_types::annot::ParseAnnotError
source · pub enum ParseAnnotError {
BadAnnot,
ParseInt(ParseIntError),
ParseStrand(StrandError),
Splicing(SplicingError),
EndBeforeStart,
}
Variants§
Trait Implementations§
source§impl Debug for ParseAnnotError
impl Debug for ParseAnnotError
source§impl Display for ParseAnnotError
impl Display for ParseAnnotError
source§impl Error for ParseAnnotError
impl Error for ParseAnnotError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<ParseIntError> for ParseAnnotError
impl From<ParseIntError> for ParseAnnotError
source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
source§impl From<SplicingError> for ParseAnnotError
impl From<SplicingError> for ParseAnnotError
source§fn from(source: SplicingError) -> Self
fn from(source: SplicingError) -> Self
Converts to this type from the input type.
source§impl From<StrandError> for ParseAnnotError
impl From<StrandError> for ParseAnnotError
source§fn from(source: StrandError) -> Self
fn from(source: StrandError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseAnnotError
impl RefUnwindSafe for ParseAnnotError
impl Send for ParseAnnotError
impl Sync for ParseAnnotError
impl Unpin for ParseAnnotError
impl UnwindSafe for ParseAnnotError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more