Trait Displayable
Sourcepub 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.