pub struct AuditResult {
pub skills_dir: PathBuf,
pub total: usize,
pub healthy: usize,
pub broken: usize,
pub skills: Vec<SkillEntry>,
pub manifest_diffs: Option<Vec<ManifestDiff>>,
pub similar_pairs: Vec<SimilarPair>,
pub usage: Option<Vec<SkillUsage>>,
pub cleanup: Option<Vec<CleanupEntry>>,
}Fields§
§skills_dir: PathBuf§total: usize§healthy: usize§broken: usize§skills: Vec<SkillEntry>§manifest_diffs: Option<Vec<ManifestDiff>>§similar_pairs: Vec<SimilarPair>§usage: Option<Vec<SkillUsage>>§cleanup: Option<Vec<CleanupEntry>>Trait Implementations§
Source§impl Clone for AuditResult
impl Clone for AuditResult
Source§fn clone(&self) -> AuditResult
fn clone(&self) -> AuditResult
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 AuditResult
impl Debug for AuditResult
Auto Trait Implementations§
impl Freeze for AuditResult
impl RefUnwindSafe for AuditResult
impl Send for AuditResult
impl Sync for AuditResult
impl Unpin for AuditResult
impl UnsafeUnpin for AuditResult
impl UnwindSafe for AuditResult
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