Skip to main content

Result

Type Alias Result 

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

A specialized Result type for LERC operations.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LercError)

Contains the error value