pub trait RedactReplicatedValue: Send + Sync {
// Required method
fn redact(&self, plaintext: &[u8]) -> Vec<u8> ⓘ;
}Expand description
Optional redaction hook before replicated bytes are sealed/sent.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".