pub struct AuditIssue {
pub kind: AuditKind,
pub detail: String,
}Expand description
One conservation problem found by audit.
Fields§
§kind: AuditKindThe class of problem.
detail: StringHuman-readable detail (nuclide, offending value).
Trait Implementations§
Source§impl Clone for AuditIssue
impl Clone for AuditIssue
Source§fn clone(&self) -> AuditIssue
fn clone(&self) -> AuditIssue
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 AuditIssue
impl Debug for AuditIssue
impl Eq for AuditIssue
Source§impl PartialEq for AuditIssue
impl PartialEq for AuditIssue
impl StructuralPartialEq for AuditIssue
Auto Trait Implementations§
impl Freeze for AuditIssue
impl RefUnwindSafe for AuditIssue
impl Send for AuditIssue
impl Sync for AuditIssue
impl Unpin for AuditIssue
impl UnsafeUnpin for AuditIssue
impl UnwindSafe for AuditIssue
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