Enum rust_htslib::bam::IndexedReaderPathError
source · pub enum IndexedReaderPathError {
InvalidPath,
IndexedReaderError(IndexedReaderError),
}
Variants§
InvalidPath
IndexedReaderError(IndexedReaderError)
Trait Implementations§
source§impl Clone for IndexedReaderPathError
impl Clone for IndexedReaderPathError
source§fn clone(&self) -> IndexedReaderPathError
fn clone(&self) -> IndexedReaderPathError
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 IndexedReaderPathError
impl Debug for IndexedReaderPathError
source§impl Display for IndexedReaderPathError
impl Display for IndexedReaderPathError
source§impl Error for IndexedReaderPathError
impl Error for IndexedReaderPathError
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<IndexedReaderError> for IndexedReaderPathError
impl From<IndexedReaderError> for IndexedReaderPathError
source§fn from(err: IndexedReaderError) -> IndexedReaderPathError
fn from(err: IndexedReaderError) -> IndexedReaderPathError
Converts to this type from the input type.