pub struct PluginArtifact {
pub name: String,
pub path: PathBuf,
pub configuration: DistriServerConfig,
pub tools: Vec<PluginToolDefinition>,
pub agents: Vec<PluginAgentDefinition>,
}Expand description
Built DAP package artifact ready for registration in distri
Fields§
§name: String§path: PathBuf§configuration: DistriServerConfig§tools: Vec<PluginToolDefinition>§agents: Vec<PluginAgentDefinition>Trait Implementations§
Source§impl Clone for PluginArtifact
impl Clone for PluginArtifact
Source§fn clone(&self) -> PluginArtifact
fn clone(&self) -> PluginArtifact
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 PluginArtifact
impl Debug for PluginArtifact
Source§impl<'de> Deserialize<'de> for PluginArtifact
impl<'de> Deserialize<'de> for PluginArtifact
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 PluginArtifact
impl RefUnwindSafe for PluginArtifact
impl Send for PluginArtifact
impl Sync for PluginArtifact
impl Unpin for PluginArtifact
impl UnsafeUnpin for PluginArtifact
impl UnwindSafe for PluginArtifact
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