BitstreamResult

Type Alias BitstreamResult 

Source
pub type BitstreamResult<T> = Result<T, Error>;
Expand description

Shorthand for result type of jxl_bitstream.

Aliased Type§

pub enum BitstreamResult<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value