Type Alias jupiter::response::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§

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

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(OutputError)

Contains the error value