Enum rust_htslib::tbx::TabixReaderError []

pub enum TabixReaderError {
    InvalidIndex,
    BGZFError(BGZFError),
}

Variants

Trait Implementations

impl Debug for TabixReaderError
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for TabixReaderError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for TabixReaderError

Formats the value using the given formatter. Read more

impl Error for TabixReaderError

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl From<BGZFError> for TabixReaderError

Performs the conversion.

impl From<TabixReaderError> for TabixReaderPathError

Performs the conversion.

Auto Trait Implementations