pub struct PluginId {
pub name: &'static str,
pub marketplace: &'static str,
}Expand description
A plugin’s identity inside a marketplace.
In Claude Code’s user settings, the qualified id is
"<name>@<marketplace>" (e.g. devboy@meteora-devboy). Some agent
versions also serialise plugins as { "<marketplace>": { "<name>": true } }. Both shapes are matched exactly.
Fields§
§name: &'static strPlugin name (matches plugin.json#name).
marketplace: &'static strOwning marketplace name (matches marketplace.json#name).
Trait Implementations§
impl Copy for PluginId
impl Eq for PluginId
impl StructuralPartialEq for PluginId
Auto Trait Implementations§
impl Freeze for PluginId
impl RefUnwindSafe for PluginId
impl Send for PluginId
impl Sync for PluginId
impl Unpin for PluginId
impl UnsafeUnpin for PluginId
impl UnwindSafe for PluginId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.