pub trait LimitedDisplay {
    fn limited_fmt(&self, f: &mut Formatter<'_>, limit: usize) -> Result;
}

Required Methods

Implementors