pub struct PluginBootCandidate {
pub installed: InstalledPlugin,
pub manifest: Option<PluginManifest>,
}Expand description
One installed row plus the manifest read from that row’s plugin_dir.
None is explicit corruption/unavailability, not an empty manifest.
Fields§
§installed: InstalledPlugin§manifest: Option<PluginManifest>Trait Implementations§
Source§impl Clone for PluginBootCandidate
impl Clone for PluginBootCandidate
Source§fn clone(&self) -> PluginBootCandidate
fn clone(&self) -> PluginBootCandidate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PluginBootCandidate
impl RefUnwindSafe for PluginBootCandidate
impl Send for PluginBootCandidate
impl Sync for PluginBootCandidate
impl Unpin for PluginBootCandidate
impl UnsafeUnpin for PluginBootCandidate
impl UnwindSafe for PluginBootCandidate
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