pub trait Display {
    fn fmt(&self, f: &mut Formatter<'_>) -> Result;

    fn rdf_display(&self) -> Displayed<'_, Self> { ... }
}
Expand description

RDF display.

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors