pub trait PrintWithSize {
    fn fmt_with_size(
        &self,
        f: &mut Formatter<'_>,
        options: &Options,
        indent: usize,
        sizes: &[Size],
        index: &mut usize
    ) -> Result; }

Required Methods

Implementations on Foreign Types

Implementors