pub trait Redactor {
// Required method
fn redact(f: &mut Formatter<'_>) -> Result;
}Expand description
A Trait to define how a value should be redacted.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.