Type Alias exr::error::UnitResult

source ·
pub type UnitResult = Result<()>;
Expand description

A result that, if ok, contains nothing, and otherwise contains an exr error.

Aliased Type§

enum UnitResult {
    Ok(()),
    Err(Error),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(Error)

Contains the error value