pub trait RdfDisplayType {
    // Required methods
    fn omit(&self) -> bool;
    fn rdf_fmt_type_separator(&self, f: &mut Formatter<'_>) -> Result;
}

Required Methods§

source

fn omit(&self) -> bool

source

fn rdf_fmt_type_separator(&self, f: &mut Formatter<'_>) -> Result

Implementors§

source§

impl<T: RdfTypeIri, L> RdfDisplayType for Type<T, L>