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§
Sourcefn is_xsd_string_with(&self, context: &C) -> bool
fn is_xsd_string_with(&self, context: &C) -> bool
Checks if the type IRI is XSD_STRING
using the given context.