pub struct PluginConfig {Show 14 fields
pub id: String,
pub name: String,
pub description: String,
pub version: String,
pub enabled: bool,
pub author: PluginAuthor,
pub keywords: Vec<String>,
pub license: String,
pub category: String,
pub skills: PluginComponentRef,
pub agents: PluginComponentRef,
pub mcp_servers: Vec<String>,
pub hooks: HookEventsConfig,
pub scripts: Vec<PluginScript>,
}Fields§
§id: String§name: String§description: String§version: String§enabled: bool§keywords: Vec<String>§license: String§category: String§skills: PluginComponentRef§agents: PluginComponentRef§mcp_servers: Vec<String>§hooks: HookEventsConfig§scripts: Vec<PluginScript>Implementations§
Trait Implementations§
Source§impl Clone for PluginConfig
impl Clone for PluginConfig
Source§fn clone(&self) -> PluginConfig
fn clone(&self) -> PluginConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PluginConfig
impl Debug for PluginConfig
Source§impl<'de> Deserialize<'de> for PluginConfig
impl<'de> Deserialize<'de> for PluginConfig
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 PluginConfig
impl RefUnwindSafe for PluginConfig
impl Send for PluginConfig
impl Sync for PluginConfig
impl Unpin for PluginConfig
impl UnsafeUnpin for PluginConfig
impl UnwindSafe for PluginConfig
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