Result

Type Alias Result 

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

Result type alias using At<GifError> for automatic location tracking.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(At<GifError>)

Contains the error value