pub struct SkillInvocation {
pub call_id: String,
pub manifest: SkillManifest,
pub args: Value,
pub context: AgentContextSnapshot,
pub dry_run: bool,
}Fields§
§call_id: String§manifest: SkillManifest§args: Value§context: AgentContextSnapshot§dry_run: boolTrait Implementations§
Source§impl Clone for SkillInvocation
impl Clone for SkillInvocation
Source§fn clone(&self) -> SkillInvocation
fn clone(&self) -> SkillInvocation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SkillInvocation
impl Debug for SkillInvocation
Source§impl<'de> Deserialize<'de> for SkillInvocation
impl<'de> Deserialize<'de> for SkillInvocation
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
Source§impl PartialEq for SkillInvocation
impl PartialEq for SkillInvocation
Source§fn eq(&self, other: &SkillInvocation) -> bool
fn eq(&self, other: &SkillInvocation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SkillInvocation
impl Serialize for SkillInvocation
impl StructuralPartialEq for SkillInvocation
Auto Trait Implementations§
impl Freeze for SkillInvocation
impl RefUnwindSafe for SkillInvocation
impl Send for SkillInvocation
impl Sync for SkillInvocation
impl Unpin for SkillInvocation
impl UnsafeUnpin for SkillInvocation
impl UnwindSafe for SkillInvocation
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