pub trait AddressDisplay {
    type Show: Display;

    fn show(&self) -> Self::Show;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors