Type Alias imsz::ImResult

source ·
pub type ImResult<T> = Result<T, ImError>;

Aliased Type§

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