pub trait Displayable {
    type DisplayImpl: Display;

    fn display(self) -> Self::DisplayImpl;
}
Expand description

Trait that allows accessing Display implementation on types external to this crate.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§