pub struct ExportOutcome {
pub out_dir: PathBuf,
pub files_written: usize,
pub resolved_artefacts: usize,
pub unresolved_artefacts: usize,
}Expand description
What export_evidence_bundle wrote, for the CLI’s one-line report.
Fields§
§out_dir: PathBuf§files_written: usizeFiles written, including manifest.json.
resolved_artefacts: usize§unresolved_artefacts: usizeTrait Implementations§
Source§impl Clone for ExportOutcome
impl Clone for ExportOutcome
Source§fn clone(&self) -> ExportOutcome
fn clone(&self) -> ExportOutcome
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 ExportOutcome
impl Debug for ExportOutcome
impl Eq for ExportOutcome
Source§impl PartialEq for ExportOutcome
impl PartialEq for ExportOutcome
impl StructuralPartialEq for ExportOutcome
Auto Trait Implementations§
impl Freeze for ExportOutcome
impl RefUnwindSafe for ExportOutcome
impl Send for ExportOutcome
impl Sync for ExportOutcome
impl Unpin for ExportOutcome
impl UnsafeUnpin for ExportOutcome
impl UnwindSafe for ExportOutcome
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