pub struct FailuresIndex {
pub total_failure_count: usize,
pub missed_failure_ids: Vec<usize>,
pub entries: Vec<FailureIndexEntry>,
}Fields§
§total_failure_count: usize§missed_failure_ids: Vec<usize>§entries: Vec<FailureIndexEntry>Trait Implementations§
Source§impl Clone for FailuresIndex
impl Clone for FailuresIndex
Source§fn clone(&self) -> FailuresIndex
fn clone(&self) -> FailuresIndex
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 FailuresIndex
impl Debug for FailuresIndex
Auto Trait Implementations§
impl Freeze for FailuresIndex
impl RefUnwindSafe for FailuresIndex
impl Send for FailuresIndex
impl Sync for FailuresIndex
impl Unpin for FailuresIndex
impl UnsafeUnpin for FailuresIndex
impl UnwindSafe for FailuresIndex
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