pub struct TestSummary {
pub has_tests_dir: bool,
pub test_files: usize,
pub test_directories: Vec<PathBuf>,
pub commands: Vec<TestCommand>,
}Fields§
§has_tests_dir: bool§test_files: usize§test_directories: Vec<PathBuf>§commands: Vec<TestCommand>Trait Implementations§
Source§impl Clone for TestSummary
impl Clone for TestSummary
Source§fn clone(&self) -> TestSummary
fn clone(&self) -> TestSummary
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 moreSource§impl Debug for TestSummary
impl Debug for TestSummary
Source§impl Default for TestSummary
impl Default for TestSummary
Source§fn default() -> TestSummary
fn default() -> TestSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestSummary
impl<'de> Deserialize<'de> for TestSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TestSummary
impl PartialEq for TestSummary
Source§fn eq(&self, other: &TestSummary) -> bool
fn eq(&self, other: &TestSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TestSummary
impl Serialize for TestSummary
impl Eq for TestSummary
impl StructuralPartialEq for TestSummary
Auto Trait Implementations§
impl Freeze for TestSummary
impl RefUnwindSafe for TestSummary
impl Send for TestSummary
impl Sync for TestSummary
impl Unpin for TestSummary
impl UnsafeUnpin for TestSummary
impl UnwindSafe for TestSummary
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