Trait RdfTypeIriWithContext

Source
pub trait RdfTypeIriWithContext<C> {
    // Required method
    fn is_xsd_string_with(&self, context: &C) -> bool;
}
Expand description

Literal type IRI.

This trait is used to correctly format literal type IRIs, which can be omitted when it is XSD_STRING.

Required Methods§

Source

fn is_xsd_string_with(&self, context: &C) -> bool

Checks if the type IRI is XSD_STRING using the given context.

Implementations on Foreign Types§

Source§

impl<C, T: RdfTypeIriWithContext<C>> RdfTypeIriWithContext<C> for &T

Source§

fn is_xsd_string_with(&self, context: &C) -> bool

Implementors§