Expand description
Hide credentials from debug output
§Example
use hide::Hide;
#[derive(Debug)]
pub struct MyStruct {
username: String,
password: Hide<String>,
}
fn example1() {
let data = MyStruct {
username: "user".to_string(),
password: "password".to_string().into(),
};
println!("{data:#?}");
}
Structs§
- Wraps a type and hides it from debug output.