pub enum PluginBackendKind {
Lua,
Wasi,
}Expand description
Supported plugin backend implementations.
Variants§
Lua
Lua-compatible plugin backend.
Wasi
Native plugin backend modeled after a WASI component contract.
Trait Implementations§
Source§impl Clone for PluginBackendKind
impl Clone for PluginBackendKind
Source§fn clone(&self) -> PluginBackendKind
fn clone(&self) -> PluginBackendKind
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 PluginBackendKind
impl Debug for PluginBackendKind
Source§impl<'de> Deserialize<'de> for PluginBackendKind
impl<'de> Deserialize<'de> for PluginBackendKind
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 PluginBackendKind
impl PartialEq for PluginBackendKind
Source§impl Serialize for PluginBackendKind
impl Serialize for PluginBackendKind
impl Copy for PluginBackendKind
impl Eq for PluginBackendKind
impl StructuralPartialEq for PluginBackendKind
Auto Trait Implementations§
impl Freeze for PluginBackendKind
impl RefUnwindSafe for PluginBackendKind
impl Send for PluginBackendKind
impl Sync for PluginBackendKind
impl Unpin for PluginBackendKind
impl UnsafeUnpin for PluginBackendKind
impl UnwindSafe for PluginBackendKind
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