pub struct NativePluginConfig {
pub path: String,
pub enabled: bool,
}Expand description
Configuration for a native plugin.
Fields§
§path: StringPath to the dynamic library.
enabled: boolWhether the plugin is enabled.
Trait Implementations§
Source§impl Clone for NativePluginConfig
impl Clone for NativePluginConfig
Source§fn clone(&self) -> NativePluginConfig
fn clone(&self) -> NativePluginConfig
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 moreAuto Trait Implementations§
impl Freeze for NativePluginConfig
impl RefUnwindSafe for NativePluginConfig
impl Send for NativePluginConfig
impl Sync for NativePluginConfig
impl Unpin for NativePluginConfig
impl UnwindSafe for NativePluginConfig
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