Enum rust_htslib::bcf::BCFPathError
[−]
pub enum BCFPathError {
InvalidPath,
BCFError(BCFError),
}Variants
InvalidPathBCFError(BCFError)Trait Implementations
impl Debug for BCFPathError[src]
impl Display for BCFPathError
impl Error for BCFPathError
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more
impl From<BCFError> for BCFPathError
fn from(err: BCFError) -> BCFPathError
Performs the conversion.