Type Alias Result

Source
pub type Result<T, U = BitStreamError> = Result<T, U>;

Aliased Type§

pub enum Result<T, U = BitStreamError> {
    Ok(T),
    Err(U),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(U)

Contains the error value