pub trait MakeDisplay<T> {
    type Target: Display;

    // Required method
    fn make_display(&self, source: T) -> Self::Target;
}
Expand description

Identical to MakeFmt but with a Display bound on the associated type.

Required Associated Types§

Required Methods§

source

fn make_display(&self, source: T) -> Self::Target

Mirrors MakeFmt::make.

Implementors§

source§

impl<T, U> MakeDisplay<T> for U
where U: MakeFmt<T>, U::Target: Display,

§

type Target = <U as MakeFmt<T>>::Target