// By default, redaction will be applied to alphabetic characters. If you want to fully redact
// secrets, passwords, emails and so on, you can use the `fixed` option, which will also hide the
// length of the original string
useveil::Redact;#[derive(Redact)]structAuthInfo{login: String,
#[redact(fixed = 3)]password: String,
}fnmain(){let info = AuthInfo {
login:"name".to_string(),
password:"/Jb@`?f.?%!hj2".to_string(),};println!("{info:#?}");}