Skip to main content

InfotheoryResult

Type Alias InfotheoryResult 

Source
pub type InfotheoryResult<T> = Result<T, InfotheoryError>;
Expand description

Result type used by fallible infotheory APIs.

Aliased Type§

pub enum InfotheoryResult<T> {
    Ok(T),
    Err(InfotheoryError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InfotheoryError)

Contains the error value