pub struct PlannedSkillCall {
pub call_id: String,
pub name: String,
pub args: Value,
pub priority: i32,
pub depends_on: Vec<String>,
pub retry_policy: ToolRetryPolicy,
pub dry_run: bool,
}Fields§
§call_id: String§name: String§args: Value§priority: i32§depends_on: Vec<String>§retry_policy: ToolRetryPolicy§dry_run: boolTrait Implementations§
Source§impl Clone for PlannedSkillCall
impl Clone for PlannedSkillCall
Source§fn clone(&self) -> PlannedSkillCall
fn clone(&self) -> PlannedSkillCall
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 PlannedSkillCall
impl Debug for PlannedSkillCall
Source§impl<'de> Deserialize<'de> for PlannedSkillCall
impl<'de> Deserialize<'de> for PlannedSkillCall
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlannedSkillCall, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlannedSkillCall, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlannedSkillCall
impl PartialEq for PlannedSkillCall
Source§fn eq(&self, other: &PlannedSkillCall) -> bool
fn eq(&self, other: &PlannedSkillCall) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PlannedSkillCall
impl Serialize for PlannedSkillCall
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlannedSkillCall
Auto Trait Implementations§
impl Freeze for PlannedSkillCall
impl RefUnwindSafe for PlannedSkillCall
impl Send for PlannedSkillCall
impl Sync for PlannedSkillCall
impl Unpin for PlannedSkillCall
impl UnsafeUnpin for PlannedSkillCall
impl UnwindSafe for PlannedSkillCall
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