pub struct PluginAgentDefinition {
pub name: String,
pub package_name: String,
pub description: String,
pub file_path: PathBuf,
pub agent_config: AgentConfig,
}Expand description
Agent definition ready for DAP registration with runtime info
Fields§
§name: String§package_name: String§description: String§file_path: PathBuf§agent_config: AgentConfigThe full agent configuration (supports all agent types)
Trait Implementations§
Source§impl Clone for PluginAgentDefinition
impl Clone for PluginAgentDefinition
Source§fn clone(&self) -> PluginAgentDefinition
fn clone(&self) -> PluginAgentDefinition
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 PluginAgentDefinition
impl Debug for PluginAgentDefinition
Source§impl<'de> Deserialize<'de> for PluginAgentDefinition
impl<'de> Deserialize<'de> for PluginAgentDefinition
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 PluginAgentDefinition
impl RefUnwindSafe for PluginAgentDefinition
impl Send for PluginAgentDefinition
impl Sync for PluginAgentDefinition
impl Unpin for PluginAgentDefinition
impl UnsafeUnpin for PluginAgentDefinition
impl UnwindSafe for PluginAgentDefinition
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