Enum rust_htslib::tbx::TabixReaderPathError
source · pub enum TabixReaderPathError {
InvalidPath,
TabixReaderError(TabixReaderError),
}
Variants§
InvalidPath
TabixReaderError(TabixReaderError)
Trait Implementations§
source§impl Clone for TabixReaderPathError
impl Clone for TabixReaderPathError
source§fn clone(&self) -> TabixReaderPathError
fn clone(&self) -> TabixReaderPathError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TabixReaderPathError
impl Debug for TabixReaderPathError
source§impl Display for TabixReaderPathError
impl Display for TabixReaderPathError
source§impl Error for TabixReaderPathError
impl Error for TabixReaderPathError
source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<TabixReaderError> for TabixReaderPathError
impl From<TabixReaderError> for TabixReaderPathError
source§fn from(err: TabixReaderError) -> TabixReaderPathError
fn from(err: TabixReaderError) -> TabixReaderPathError
Converts to this type from the input type.