pub type PluginResult = Result<PluginOutput, PluginExecutionError>;Expand description
The result of a plugin execution: either success or an error with the context preserved.
Aliased Type§
pub enum PluginResult {
Ok(PluginOutput),
Err(PluginExecutionError),
}Variants§
Ok(PluginOutput)
Contains the success value
Err(PluginExecutionError)
Contains the error value