pub struct PluginMeta {
pub binary_path: PathBuf,
pub is_active: bool,
pub is_built_in: bool,
}
Fields§
§binary_path: PathBuf
The installation path of the plug-in, the built-in plugin binary_path is default value.
is_active: bool
Activation falg.
is_built_in: bool
Built-in flag.
Implementations§
Source§impl PluginMeta
impl PluginMeta
Trait Implementations§
Source§impl Clone for PluginMeta
impl Clone for PluginMeta
Source§fn clone(&self) -> PluginMeta
fn clone(&self) -> PluginMeta
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for PluginMeta
impl RefUnwindSafe for PluginMeta
impl Send for PluginMeta
impl Sync for PluginMeta
impl Unpin for PluginMeta
impl UnwindSafe for PluginMeta
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