pub struct CursorMovedV1 {
pub thread: String,
pub branch_id: TimelineBranchId,
pub from_step_id: Option<TimelineStepId>,
pub to_step_id: Option<TimelineStepId>,
pub from_state: ChangeId,
pub to_state: ChangeId,
pub reason: TimelineCursorMoveReason,
pub moved_at_ms: i64,
}Expand description
Cursor movement operation body.
Fields§
§thread: String§branch_id: TimelineBranchId§from_step_id: Option<TimelineStepId>§to_step_id: Option<TimelineStepId>§from_state: ChangeId§to_state: ChangeId§reason: TimelineCursorMoveReason§moved_at_ms: i64Trait Implementations§
Source§impl Clone for CursorMovedV1
impl Clone for CursorMovedV1
Source§fn clone(&self) -> CursorMovedV1
fn clone(&self) -> CursorMovedV1
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 CursorMovedV1
impl Debug for CursorMovedV1
Source§impl<'de> Deserialize<'de> for CursorMovedV1
impl<'de> Deserialize<'de> for CursorMovedV1
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 CursorMovedV1
Source§impl PartialEq for CursorMovedV1
impl PartialEq for CursorMovedV1
Source§fn eq(&self, other: &CursorMovedV1) -> bool
fn eq(&self, other: &CursorMovedV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CursorMovedV1
impl Serialize for CursorMovedV1
impl StructuralPartialEq for CursorMovedV1
Auto Trait Implementations§
impl Freeze for CursorMovedV1
impl RefUnwindSafe for CursorMovedV1
impl Send for CursorMovedV1
impl Sync for CursorMovedV1
impl Unpin for CursorMovedV1
impl UnsafeUnpin for CursorMovedV1
impl UnwindSafe for CursorMovedV1
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