pub struct RedactionSummary {
pub source_url_values: usize,
pub html_values: usize,
pub diagnostic_values: usize,
}Expand description
Summary of local redaction categories removed from a capture.
Fields§
§source_url_values: usizeCredential-shaped source URL values were redacted.
html_values: usizeCredential-shaped HTML text or attributes were redacted.
diagnostic_values: usizeCredential-shaped diagnostic values were redacted.
Implementations§
Trait Implementations§
Source§impl Clone for RedactionSummary
impl Clone for RedactionSummary
Source§fn clone(&self) -> RedactionSummary
fn clone(&self) -> RedactionSummary
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 RedactionSummary
impl Debug for RedactionSummary
Source§impl Default for RedactionSummary
impl Default for RedactionSummary
Source§fn default() -> RedactionSummary
fn default() -> RedactionSummary
Returns the “default value” for a type. Read more
Source§impl PartialEq for RedactionSummary
impl PartialEq for RedactionSummary
Source§fn eq(&self, other: &RedactionSummary) -> bool
fn eq(&self, other: &RedactionSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RedactionSummary
impl StructuralPartialEq for RedactionSummary
Auto Trait Implementations§
impl Freeze for RedactionSummary
impl RefUnwindSafe for RedactionSummary
impl Send for RedactionSummary
impl Sync for RedactionSummary
impl Unpin for RedactionSummary
impl UnsafeUnpin for RedactionSummary
impl UnwindSafe for RedactionSummary
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