Skip to main content

PluginResult

Type Alias PluginResult 

Source
pub type PluginResult<T> = Result<T, PluginError>;
Expand description

Result type for plugin operations

Aliased Type§

pub enum PluginResult<T> {
    Ok(T),
    Err(PluginError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PluginError)

Contains the error value