pub trait PrintWithSize {
// Required method
fn fmt_with_size(
&self,
f: &mut Formatter<'_>,
options: &Options,
indent: usize,
sizes: &[Size],
index: &mut usize,
) -> Result;
}Required Methods§
fn fmt_with_size( &self, f: &mut Formatter<'_>, options: &Options, indent: usize, sizes: &[Size], index: &mut usize, ) -> Result
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".