pub struct ToolExecutionStartedEvent {
pub type: Option<Type>,
pub created_at: Option<String>,
pub output_index: Option<i32>,
pub id: String,
pub model: Option<Option<String>>,
pub agent_id: Option<Option<String>>,
pub name: Box<Name>,
pub arguments: String,
}Fields§
§type: Option<Type>§created_at: Option<String>§output_index: Option<i32>§id: String§model: Option<Option<String>>§agent_id: Option<Option<String>>§name: Box<Name>§arguments: StringImplementations§
Trait Implementations§
Source§impl Clone for ToolExecutionStartedEvent
impl Clone for ToolExecutionStartedEvent
Source§fn clone(&self) -> ToolExecutionStartedEvent
fn clone(&self) -> ToolExecutionStartedEvent
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 ToolExecutionStartedEvent
impl Debug for ToolExecutionStartedEvent
Source§impl Default for ToolExecutionStartedEvent
impl Default for ToolExecutionStartedEvent
Source§fn default() -> ToolExecutionStartedEvent
fn default() -> ToolExecutionStartedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolExecutionStartedEvent
impl<'de> Deserialize<'de> for ToolExecutionStartedEvent
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
impl StructuralPartialEq for ToolExecutionStartedEvent
Auto Trait Implementations§
impl Freeze for ToolExecutionStartedEvent
impl RefUnwindSafe for ToolExecutionStartedEvent
impl Send for ToolExecutionStartedEvent
impl Sync for ToolExecutionStartedEvent
impl Unpin for ToolExecutionStartedEvent
impl UnsafeUnpin for ToolExecutionStartedEvent
impl UnwindSafe for ToolExecutionStartedEvent
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