pub struct RedactionReport {
pub redactions_checked: usize,
pub passed: usize,
pub failed: usize,
pub failures: Vec<RedactionFailure>,
}Expand description
Report from verifying redaction completeness.
Fields§
§redactions_checked: usizeNumber of redaction events checked.
passed: usizeNumber that passed (content confirmed absent from all surfaces).
failed: usizeNumber that failed (residual content found somewhere).
failures: Vec<RedactionFailure>Details of each failure.
Implementations§
Trait Implementations§
Source§impl Clone for RedactionReport
impl Clone for RedactionReport
Source§fn clone(&self) -> RedactionReport
fn clone(&self) -> RedactionReport
Returns a duplicate of the value. Read more
1.0.0 · 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 RedactionReport
impl Debug for RedactionReport
Source§impl PartialEq for RedactionReport
impl PartialEq for RedactionReport
Source§impl Serialize for RedactionReport
impl Serialize for RedactionReport
impl Eq for RedactionReport
impl StructuralPartialEq for RedactionReport
Auto Trait Implementations§
impl Freeze for RedactionReport
impl RefUnwindSafe for RedactionReport
impl Send for RedactionReport
impl Sync for RedactionReport
impl Unpin for RedactionReport
impl UnsafeUnpin for RedactionReport
impl UnwindSafe for RedactionReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.