pub type PluginResult = Result<(), Box<dyn Error + Send + Sync>>;
The result type used by plugin lifecycle hooks.
pub enum PluginResult { Ok(()), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value