pub enum PluginErrorCode {
InitializationFailed,
ExecutionFailed,
PermissionDenied,
ResourceExhausted,
InvalidConfiguration,
DependencyMissing,
UnsupportedOperation,
Internal,
}Expand description
Plugin error codes
Variants§
InitializationFailed
ExecutionFailed
PermissionDenied
ResourceExhausted
InvalidConfiguration
DependencyMissing
UnsupportedOperation
Internal
Trait Implementations§
Source§impl Clone for PluginErrorCode
impl Clone for PluginErrorCode
Source§fn clone(&self) -> PluginErrorCode
fn clone(&self) -> PluginErrorCode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PluginErrorCode
impl Debug for PluginErrorCode
Source§impl<'de> Deserialize<'de> for PluginErrorCode
impl<'de> Deserialize<'de> for PluginErrorCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PluginErrorCode
impl PartialEq for PluginErrorCode
Source§impl Serialize for PluginErrorCode
impl Serialize for PluginErrorCode
impl StructuralPartialEq for PluginErrorCode
Auto Trait Implementations§
impl Freeze for PluginErrorCode
impl RefUnwindSafe for PluginErrorCode
impl Send for PluginErrorCode
impl Sync for PluginErrorCode
impl Unpin for PluginErrorCode
impl UnsafeUnpin for PluginErrorCode
impl UnwindSafe for PluginErrorCode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more