pub struct FastPathArtifacts {
pub output_dir: PathBuf,
pub timing_json_path: PathBuf,
pub summary_json_path: PathBuf,
pub trust_svg_path: PathBuf,
pub summary_md_path: PathBuf,
}Expand description
Artifacts produced by run_fast_path_only.
Fields§
§output_dir: PathBufDirectory containing all fast-path outputs.
timing_json_path: PathBufMachine-readable timing JSON.
summary_json_path: PathBufMachine-readable summary JSON.
trust_svg_path: PathBufTrust visualisation SVG.
summary_md_path: PathBufHuman-readable markdown summary.
Auto Trait Implementations§
impl Freeze for FastPathArtifacts
impl RefUnwindSafe for FastPathArtifacts
impl Send for FastPathArtifacts
impl Sync for FastPathArtifacts
impl Unpin for FastPathArtifacts
impl UnsafeUnpin for FastPathArtifacts
impl UnwindSafe for FastPathArtifacts
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