pub struct RunTimeline {
pub claimed_at_ms: Option<i64>,
pub started_at_ms: Option<i64>,
pub finished_at_ms: Option<i64>,
}Expand description
One run’s wall-clock boundaries, derived from the activity feed. Every field is optional because a run is observable at each stage of its life: claimed but not started, started but not finished.
Fields§
§claimed_at_ms: Option<i64>§started_at_ms: Option<i64>§finished_at_ms: Option<i64>Trait Implementations§
Source§impl Clone for RunTimeline
impl Clone for RunTimeline
Source§fn clone(&self) -> RunTimeline
fn clone(&self) -> RunTimeline
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 moreimpl Copy for RunTimeline
Source§impl Debug for RunTimeline
impl Debug for RunTimeline
Source§impl Default for RunTimeline
impl Default for RunTimeline
Source§fn default() -> RunTimeline
fn default() -> RunTimeline
Returns the “default value” for a type. Read more
impl Eq for RunTimeline
Source§impl PartialEq for RunTimeline
impl PartialEq for RunTimeline
impl StructuralPartialEq for RunTimeline
Auto Trait Implementations§
impl Freeze for RunTimeline
impl RefUnwindSafe for RunTimeline
impl Send for RunTimeline
impl Sync for RunTimeline
impl Unpin for RunTimeline
impl UnsafeUnpin for RunTimeline
impl UnwindSafe for RunTimeline
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.