pub trait ToRedactedOutput {
// Required method
fn to_redacted_output(&self) -> RedactedOutput;
}Expand description
Produces a logging-safe output representation.
This trait is intentionally narrower than [RedactableWithFormatter].
Passthrough scalar formatting is useful inside redacted templates, but it
does not certify a raw value as safe at a logging boundary.