pub trait DisplayWithOptions: Display {
// Provided method
fn fmt_with_options(
&self,
f: &mut Formatter<'_>,
_options: &Options,
) -> Result { ... }
}Expand description
Display something with options.
pub trait DisplayWithOptions: Display {
// Provided method
fn fmt_with_options(
&self,
f: &mut Formatter<'_>,
_options: &Options,
) -> Result { ... }
}Display something with options.