pub type PluginResult<T> = Result<T, Error>;
插件执行结果
pub enum PluginResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value