pub trait DisplayExt {
    type Displayable: Display;

    // Required method
    fn display_ext(&self) -> Self::Displayable;
}
Expand description

Extension trait to allow user-friendly formatting.

Required Associated Types§

Required Methods§

source

fn display_ext(&self) -> Self::Displayable

Returns a Display-able variant..

Implementations on Foreign Types§

source§

impl DisplayExt for SocketAddress

Implementors§