Type Alias osiris_process::operation::error::OperationResult

source ·
pub type OperationResult<T> = Result<T, OperationError>;

Aliased Type§

enum OperationResult<T> {
    Ok(T),
    Err(OperationError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(OperationError)

Contains the error value