pub struct UncoveredSource {
pub source_path: String,
pub suggested_test_paths: Vec<String>,
}Expand description
A source file that appears to have no matching changed test file.
Fields§
§source_path: String§suggested_test_paths: Vec<String>Trait Implementations§
Source§impl Clone for UncoveredSource
impl Clone for UncoveredSource
Source§fn clone(&self) -> UncoveredSource
fn clone(&self) -> UncoveredSource
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 UncoveredSource
impl Debug for UncoveredSource
Source§impl PartialEq for UncoveredSource
impl PartialEq for UncoveredSource
impl Eq for UncoveredSource
impl StructuralPartialEq for UncoveredSource
Auto Trait Implementations§
impl Freeze for UncoveredSource
impl RefUnwindSafe for UncoveredSource
impl Send for UncoveredSource
impl Sync for UncoveredSource
impl Unpin for UncoveredSource
impl UnsafeUnpin for UncoveredSource
impl UnwindSafe for UncoveredSource
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