pub trait RdfTypeIri {
// Required method
fn is_xsd_string(&self) -> 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(&self) -> bool
fn is_xsd_string(&self) -> bool
Checks if the type IRI is XSD_STRING
.