pub struct PluginManifest {
pub name: Option<String>,
pub version: Option<String>,
pub description: Option<String>,
pub skills: Option<Vec<PluginSkill>>,
pub mcp_servers: Option<Vec<PluginMcpServer>>,
pub permissions: Option<PluginPermissions>,
pub hooks: Option<Vec<PluginHook>>,
}Expand description
Plugin definition structure for marketplace.json
Fields§
§name: Option<String>§version: Option<String>§description: Option<String>§skills: Option<Vec<PluginSkill>>§mcp_servers: Option<Vec<PluginMcpServer>>§permissions: Option<PluginPermissions>§hooks: Option<Vec<PluginHook>>Trait Implementations§
Source§impl Debug for PluginManifest
impl Debug for PluginManifest
Source§impl<'de> Deserialize<'de> for PluginManifest
impl<'de> Deserialize<'de> for PluginManifest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PluginManifest
impl RefUnwindSafe for PluginManifest
impl Send for PluginManifest
impl Sync for PluginManifest
impl Unpin for PluginManifest
impl UnwindSafe for PluginManifest
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