pub struct PendingToolCall {
pub id: String,
pub name: String,
pub arguments: Value,
}Expand description
External pending tool-call projection emitted to event streams.
Fields§
§id: String§name: String§arguments: ValueImplementations§
Trait Implementations§
Source§impl Clone for PendingToolCall
impl Clone for PendingToolCall
Source§fn clone(&self) -> PendingToolCall
fn clone(&self) -> PendingToolCall
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 PendingToolCall
impl Debug for PendingToolCall
Source§impl Default for PendingToolCall
impl Default for PendingToolCall
Source§fn default() -> PendingToolCall
fn default() -> PendingToolCall
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingToolCall
impl<'de> Deserialize<'de> for PendingToolCall
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 PendingToolCall
impl PartialEq for PendingToolCall
Source§impl Serialize for PendingToolCall
impl Serialize for PendingToolCall
impl StructuralPartialEq for PendingToolCall
Auto Trait Implementations§
impl Freeze for PendingToolCall
impl RefUnwindSafe for PendingToolCall
impl Send for PendingToolCall
impl Sync for PendingToolCall
impl Unpin for PendingToolCall
impl UnwindSafe for PendingToolCall
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