pub struct TestAnalysis {
pub assertion_count: usize,
pub mock_count: usize,
pub mock_classes: Vec<String>,
pub line_count: usize,
pub how_not_what_count: usize,
pub fixture_count: usize,
pub has_wait: bool,
pub has_skip_call: bool,
pub assertion_message_count: usize,
pub duplicate_literal_count: usize,
pub suppressed_rules: Vec<RuleId>,
}Fields§
§assertion_count: usize§mock_count: usize§mock_classes: Vec<String>§line_count: usize§how_not_what_count: usize§fixture_count: usize§has_wait: bool§has_skip_call: bool§assertion_message_count: usize§duplicate_literal_count: usize§suppressed_rules: Vec<RuleId>Trait Implementations§
Source§impl Clone for TestAnalysis
impl Clone for TestAnalysis
Source§fn clone(&self) -> TestAnalysis
fn clone(&self) -> TestAnalysis
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 TestAnalysis
impl Debug for TestAnalysis
Source§impl Default for TestAnalysis
impl Default for TestAnalysis
Source§fn default() -> TestAnalysis
fn default() -> TestAnalysis
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TestAnalysis
impl RefUnwindSafe for TestAnalysis
impl Send for TestAnalysis
impl Sync for TestAnalysis
impl Unpin for TestAnalysis
impl UnsafeUnpin for TestAnalysis
impl UnwindSafe for TestAnalysis
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