pub trait Displayable {
    type DisplayImpl: Display;

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

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

Required Associated Types§

Required Methods§

source

fn display(self) -> Self::DisplayImpl

Implementations on Foreign Types§

source§

impl Displayable for Option<Buffers>

source§

impl Displayable for Option<Bytes>

source§

impl Displayable for Option<ClockTime>

source§

impl Displayable for Option<Default>

source§

impl Displayable for Option<Other>

source§

impl Displayable for Option<Percent>

source§

impl<T> Displayable for Option<Signed<T>>

Implementors§