pub struct ScanRunPaths {
pub base_output_root: PathBuf,
pub run_dir: PathBuf,
pub timestamp_utc: String,
}Expand description
Paths describing one timestamped scan-output run.
Fields§
§base_output_root: PathBufBase output root under which the run directory was created.
run_dir: PathBufTimestamped output directory for this scan invocation.
timestamp_utc: StringUTC timestamp string used in the run directory name.
Trait Implementations§
Source§impl Clone for ScanRunPaths
impl Clone for ScanRunPaths
Source§fn clone(&self) -> ScanRunPaths
fn clone(&self) -> ScanRunPaths
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 moreAuto Trait Implementations§
impl Freeze for ScanRunPaths
impl RefUnwindSafe for ScanRunPaths
impl Send for ScanRunPaths
impl Sync for ScanRunPaths
impl Unpin for ScanRunPaths
impl UnsafeUnpin for ScanRunPaths
impl UnwindSafe for ScanRunPaths
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