pub struct RedactStats {
pub tables_processed: usize,
pub rows_redacted: u64,
pub columns_redacted: u64,
pub table_stats: Vec<TableRedactStats>,
pub warnings: Vec<String>,
}Expand description
Statistics from redaction operation
Fields§
§tables_processed: usizeNumber of tables processed
rows_redacted: u64Number of rows redacted
columns_redacted: u64Number of columns redacted
table_stats: Vec<TableRedactStats>Per-table statistics
warnings: Vec<String>Warning messages
Trait Implementations§
Source§impl Debug for RedactStats
impl Debug for RedactStats
Source§impl Default for RedactStats
impl Default for RedactStats
Source§fn default() -> RedactStats
fn default() -> RedactStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RedactStats
impl RefUnwindSafe for RedactStats
impl Send for RedactStats
impl Sync for RedactStats
impl Unpin for RedactStats
impl UnwindSafe for RedactStats
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