pub struct RunStateHistoryEntry {
pub from: Option<RunState>,
pub to: RunState,
pub timestamp: u64,
}Expand description
Run state history entry for the response payload.
Fields§
§from: Option<RunState>Previous state, or null for initial Scheduled.
to: RunStateNew state.
timestamp: u64Timestamp associated with the transition.
Trait Implementations§
Source§impl Clone for RunStateHistoryEntry
impl Clone for RunStateHistoryEntry
Source§fn clone(&self) -> RunStateHistoryEntry
fn clone(&self) -> RunStateHistoryEntry
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 RunStateHistoryEntry
impl Debug for RunStateHistoryEntry
Auto Trait Implementations§
impl Freeze for RunStateHistoryEntry
impl RefUnwindSafe for RunStateHistoryEntry
impl Send for RunStateHistoryEntry
impl Sync for RunStateHistoryEntry
impl Unpin for RunStateHistoryEntry
impl UnsafeUnpin for RunStateHistoryEntry
impl UnwindSafe for RunStateHistoryEntry
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