Expand description
§disp
derive Display
for types that implement Debug
Example
mod hello {
use std::fmt::Display;
#[derive(Debug, disp::Display)]
pub struct Hello {}
}
fn main() {
let hello = hello::Hello {};
println!("Debug: {hello:?}, world!");
println!("Display: {hello}, world!");
}
Output:
Debug: Hello, world!
Display: Hello, world!