pub struct ToolCallStartedV1 {
pub thread: String,
pub step_id: TimelineStepId,
pub branch_id: TimelineBranchId,
pub parent_step_id: Option<TimelineStepId>,
pub native: NativeToolCallRefV1,
pub tool_name: String,
pub before_state: ChangeId,
pub payload: Option<TimelineToolPayloadMetadata>,
pub started_at_ms: i64,
}Expand description
Tool-call start operation body.
Fields§
§thread: String§step_id: TimelineStepId§branch_id: TimelineBranchId§parent_step_id: Option<TimelineStepId>§native: NativeToolCallRefV1§tool_name: String§before_state: ChangeId§payload: Option<TimelineToolPayloadMetadata>§started_at_ms: i64Trait Implementations§
Source§impl Clone for ToolCallStartedV1
impl Clone for ToolCallStartedV1
Source§fn clone(&self) -> ToolCallStartedV1
fn clone(&self) -> ToolCallStartedV1
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 ToolCallStartedV1
impl Debug for ToolCallStartedV1
Source§impl<'de> Deserialize<'de> for ToolCallStartedV1
impl<'de> Deserialize<'de> for ToolCallStartedV1
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 Eq for ToolCallStartedV1
Source§impl PartialEq for ToolCallStartedV1
impl PartialEq for ToolCallStartedV1
Source§fn eq(&self, other: &ToolCallStartedV1) -> bool
fn eq(&self, other: &ToolCallStartedV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ToolCallStartedV1
impl Serialize for ToolCallStartedV1
impl StructuralPartialEq for ToolCallStartedV1
Auto Trait Implementations§
impl Freeze for ToolCallStartedV1
impl RefUnwindSafe for ToolCallStartedV1
impl Send for ToolCallStartedV1
impl Sync for ToolCallStartedV1
impl Unpin for ToolCallStartedV1
impl UnsafeUnpin for ToolCallStartedV1
impl UnwindSafe for ToolCallStartedV1
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