pub type BitstreamResult<T> = Result<T, Error>;
Shorthand for result type of jxl_bitstream.
jxl_bitstream
pub enum BitstreamResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value