pub trait PrintWithSizeAndVocabulary<V> {
    // Required method
    fn fmt_with_size_and(
        &self,
        vocabulary: &V,
        f: &mut Formatter<'_>,
        options: &Options,
        indent: usize,
        sizes: &[Size],
        index: &mut usize
    ) -> Result;
}

Required Methods§

source

fn fmt_with_size_and( &self, vocabulary: &V, f: &mut Formatter<'_>, options: &Options, indent: usize, sizes: &[Size], index: &mut usize ) -> Result

Implementors§