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