pub struct Paths<K: PathKey> {
local_results: PathBuf,
public_results: PathBuf,
paths: HashMap<K, PathBuf>,
}
Expand description
Test output manager
Fields§
§local_results: PathBuf
Local (generated) test results
public_results: PathBuf
Valid (bumped) test results
paths: HashMap<K, PathBuf>
Computed file names
Implementations§
Auto Trait Implementations§
impl<K> Freeze for Paths<K>
impl<K> RefUnwindSafe for Paths<K>where
K: RefUnwindSafe,
impl<K> Send for Paths<K>where
K: Send,
impl<K> Sync for Paths<K>where
K: Sync,
impl<K> Unpin for Paths<K>where
K: Unpin,
impl<K> UnwindSafe for Paths<K>where
K: UnwindSafe,
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