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),
}