pub enum TimelineOperationBodyV1 {
ToolCallStarted(ToolCallStartedV1),
ToolCallFinished(ToolCallFinishedV1),
CursorMoved(CursorMovedV1),
BranchCreated(BranchCreatedV1),
}Expand description
V1 timeline operation body variants.
Variants§
ToolCallStarted(ToolCallStartedV1)
ToolCallFinished(ToolCallFinishedV1)
CursorMoved(CursorMovedV1)
BranchCreated(BranchCreatedV1)
Trait Implementations§
Source§impl Clone for TimelineOperationBodyV1
impl Clone for TimelineOperationBodyV1
Source§fn clone(&self) -> TimelineOperationBodyV1
fn clone(&self) -> TimelineOperationBodyV1
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 TimelineOperationBodyV1
impl Debug for TimelineOperationBodyV1
impl Eq for TimelineOperationBodyV1
Source§impl PartialEq for TimelineOperationBodyV1
impl PartialEq for TimelineOperationBodyV1
Source§fn eq(&self, other: &TimelineOperationBodyV1) -> bool
fn eq(&self, other: &TimelineOperationBodyV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimelineOperationBodyV1
Auto Trait Implementations§
impl Freeze for TimelineOperationBodyV1
impl RefUnwindSafe for TimelineOperationBodyV1
impl Send for TimelineOperationBodyV1
impl Sync for TimelineOperationBodyV1
impl Unpin for TimelineOperationBodyV1
impl UnsafeUnpin for TimelineOperationBodyV1
impl UnwindSafe for TimelineOperationBodyV1
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