pub enum PluginError {
AbiMismatch {
expected: u32,
found: u32,
},
LoadFailed(String),
InitFailed,
UnknownType(String),
NamespaceViolation,
WasmError(String),
}Expand description
Errors that can occur during plugin loading, unloading, or actor creation.
Variants§
AbiMismatch
The plugin’s reported ABI version does not match the engine’s.
LoadFailed(String)
The plugin file could not be opened or read.
InitFailed
pd_plugin_init returned a null pointer or the WASM equivalent failed.
UnknownType(String)
No plugin or actor type is registered under the given name.
NamespaceViolation
The plugin requested a namespace its manifest does not allow.
WasmError(String)
A WASM-specific error (compilation, instantiation, or trap).
Trait Implementations§
Source§impl Clone for PluginError
impl Clone for PluginError
Source§fn clone(&self) -> PluginError
fn clone(&self) -> PluginError
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 PluginError
impl Debug for PluginError
Source§impl Display for PluginError
impl Display for PluginError
Source§impl Error for PluginError
impl Error for PluginError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for PluginError
impl PartialEq for PluginError
impl StructuralPartialEq for PluginError
Auto Trait Implementations§
impl Freeze for PluginError
impl RefUnwindSafe for PluginError
impl Send for PluginError
impl Sync for PluginError
impl Unpin for PluginError
impl UnsafeUnpin for PluginError
impl UnwindSafe for PluginError
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