pub trait DisplayCollector {
    fn display<T>(msg: &T) -> Self
    where
        T: ?Sized + Display
; }

Required Methods

Implementors