pub struct AttemptTimeline {
pub phase: u32,
pub entries: Vec<AttemptEntry>,
}Expand description
The complete read-only attempt view for one phase.
Fields§
§phase: u32§entries: Vec<AttemptEntry>Trait Implementations§
Source§impl Clone for AttemptTimeline
impl Clone for AttemptTimeline
Source§fn clone(&self) -> AttemptTimeline
fn clone(&self) -> AttemptTimeline
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 moreAuto Trait Implementations§
impl Freeze for AttemptTimeline
impl RefUnwindSafe for AttemptTimeline
impl Send for AttemptTimeline
impl Sync for AttemptTimeline
impl Unpin for AttemptTimeline
impl UnsafeUnpin for AttemptTimeline
impl UnwindSafe for AttemptTimeline
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