Trait fmt_ext::display::CustomDisplay[][src]

pub trait CustomDisplay {
    type Target: ?Sized;
    fn fmt_target(target: &Self::Target, f: &mut Formatter<'_>) -> Result;
}
Expand description

A trait that proxying a custom Display for a target type.

Associated Types

A target type for which custom formatting is implemented.

Required methods

Should formats a target type.

Implementors