pub struct SimSummary {
pub total: usize,
pub passed: usize,
pub blocked: usize,
pub bypassed: usize,
pub failed: usize,
pub errors: usize,
}Fields§
§total: usize§passed: usize§blocked: usize§bypassed: usize§failed: usize§errors: usizeTrait Implementations§
Source§impl Clone for SimSummary
impl Clone for SimSummary
Source§fn clone(&self) -> SimSummary
fn clone(&self) -> SimSummary
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 SimSummary
impl Debug for SimSummary
Source§impl Default for SimSummary
impl Default for SimSummary
Source§fn default() -> SimSummary
fn default() -> SimSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SimSummary
impl RefUnwindSafe for SimSummary
impl Send for SimSummary
impl Sync for SimSummary
impl Unpin for SimSummary
impl UnwindSafe for SimSummary
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