ImResult

Type Alias ImResult 

Source
pub type ImResult<T> = Result<T, ImError>;

Aliased Type§

pub enum ImResult<T> {
    Ok(T),
    Err(ImError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ImError)

Contains the error value