pub struct ListedPlugin {
pub name: String,
pub version: String,
pub source: String,
pub enabled: bool,
pub summary: String,
}Expand description
Outcome row shown by list.
Fields§
§name: StringPlugin name.
version: StringPlugin version.
source: StringSource root.
enabled: boolEnabled flag (from settings).
summary: StringCounts string (“3 skills · 1 hook”).
Trait Implementations§
Source§impl Clone for ListedPlugin
impl Clone for ListedPlugin
Source§fn clone(&self) -> ListedPlugin
fn clone(&self) -> ListedPlugin
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 ListedPlugin
impl RefUnwindSafe for ListedPlugin
impl Send for ListedPlugin
impl Sync for ListedPlugin
impl Unpin for ListedPlugin
impl UnsafeUnpin for ListedPlugin
impl UnwindSafe for ListedPlugin
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