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