Skip to main content

Result

Type Alias Result 

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

Either the read bits in the requested format or a ReadError

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(ReadError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ReadError)

Contains the error value