pub struct ToolCallFinishedV1 {Show 13 fields
pub thread: String,
pub step_id: TimelineStepId,
pub branch_id: TimelineBranchId,
pub native: NativeToolCallRefV1,
pub status: TimelineToolCallStatus,
pub before_state: ChangeId,
pub after_state: ChangeId,
pub capture_state: Option<ChangeId>,
pub capture_oplog_batch_id: Option<u64>,
pub changed: bool,
pub touched_paths: Vec<String>,
pub payload: Option<TimelineToolPayloadMetadata>,
pub finished_at_ms: i64,
}Expand description
Tool-call finish operation body.
Fields§
§thread: String§step_id: TimelineStepId§branch_id: TimelineBranchId§native: NativeToolCallRefV1§status: TimelineToolCallStatus§before_state: ChangeId§after_state: ChangeId§capture_state: Option<ChangeId>§capture_oplog_batch_id: Option<u64>§changed: bool§touched_paths: Vec<String>§payload: Option<TimelineToolPayloadMetadata>§finished_at_ms: i64Trait Implementations§
Source§impl Clone for ToolCallFinishedV1
impl Clone for ToolCallFinishedV1
Source§fn clone(&self) -> ToolCallFinishedV1
fn clone(&self) -> ToolCallFinishedV1
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 ToolCallFinishedV1
impl Debug for ToolCallFinishedV1
Source§impl<'de> Deserialize<'de> for ToolCallFinishedV1
impl<'de> Deserialize<'de> for ToolCallFinishedV1
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 ToolCallFinishedV1
Source§impl PartialEq for ToolCallFinishedV1
impl PartialEq for ToolCallFinishedV1
Source§fn eq(&self, other: &ToolCallFinishedV1) -> bool
fn eq(&self, other: &ToolCallFinishedV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ToolCallFinishedV1
impl Serialize for ToolCallFinishedV1
impl StructuralPartialEq for ToolCallFinishedV1
Auto Trait Implementations§
impl Freeze for ToolCallFinishedV1
impl RefUnwindSafe for ToolCallFinishedV1
impl Send for ToolCallFinishedV1
impl Sync for ToolCallFinishedV1
impl Unpin for ToolCallFinishedV1
impl UnsafeUnpin for ToolCallFinishedV1
impl UnwindSafe for ToolCallFinishedV1
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