pub type PluginResult<T> = Result<T, PluginError>;
pub enum PluginResult<T> { Ok(T), Err(PluginError), }
Contains the success value
Contains the error value