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