pub struct AssistantToolCallDoneEvent {
pub run_step_id: Option<String>,
pub tool_call_index: usize,
pub tool_call: Value,
}Expand description
表示工具调用完成事件。
Fields§
§run_step_id: Option<String>run step ID。
tool_call_index: usize工具调用索引。
tool_call: Value工具调用快照。
Trait Implementations§
Source§impl Clone for AssistantToolCallDoneEvent
impl Clone for AssistantToolCallDoneEvent
Source§fn clone(&self) -> AssistantToolCallDoneEvent
fn clone(&self) -> AssistantToolCallDoneEvent
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 AssistantToolCallDoneEvent
impl Debug for AssistantToolCallDoneEvent
Source§impl<'de> Deserialize<'de> for AssistantToolCallDoneEvent
impl<'de> Deserialize<'de> for AssistantToolCallDoneEvent
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 AssistantToolCallDoneEvent
Auto Trait Implementations§
impl Freeze for AssistantToolCallDoneEvent
impl RefUnwindSafe for AssistantToolCallDoneEvent
impl Send for AssistantToolCallDoneEvent
impl Sync for AssistantToolCallDoneEvent
impl Unpin for AssistantToolCallDoneEvent
impl UnsafeUnpin for AssistantToolCallDoneEvent
impl UnwindSafe for AssistantToolCallDoneEvent
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