Skip to main content

OutputResult

Type Alias OutputResult 

Source
pub type OutputResult = Result<(), OutputError>;
Expand description

Represents the result type for all output operations.

The operations itself don’t generate a result but might emit an OutputError.

Aliased Type§

pub enum OutputResult {
    Ok(()),
    Err(OutputError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(OutputError)

Contains the error value