pub struct AuditBundle {
pub output_dir: PathBuf,
pub checkpoint: Option<PathBuf>,
pub verify_root: Option<String>,
pub deny_rules: Vec<String>,
pub strict: bool,
}Expand description
Bundle written by --audit-dir / cargo candle-graph audit.
Fields§
§output_dir: PathBuf§checkpoint: Option<PathBuf>§verify_root: Option<String>§deny_rules: Vec<String>§strict: boolTrait Implementations§
Source§impl Clone for AuditBundle
impl Clone for AuditBundle
Source§fn clone(&self) -> AuditBundle
fn clone(&self) -> AuditBundle
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 moreAuto Trait Implementations§
impl Freeze for AuditBundle
impl RefUnwindSafe for AuditBundle
impl Send for AuditBundle
impl Sync for AuditBundle
impl Unpin for AuditBundle
impl UnsafeUnpin for AuditBundle
impl UnwindSafe for AuditBundle
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