//! Formatter that completely redacts the contents of the contained bytes
usecrate::Formatter;/// Completly redact the contents of the item
pubstructRedactContents;implFormatter forRedactContents{fndebug_fmt(bytes:&[u8],
_type_name:&str,
f:&mutstd::fmt::Formatter<'_>,
)->std::fmt::Result{write!(f,"[{} BYTES REDACTED]", bytes.len())}}