[][src]Trait horned_owl::vocab::WithIRI

pub trait WithIRI<'a>: Meta<&'a IRIString> {
    fn iri_s(&self) -> &'a String { ... }
fn iri_b(&self) -> &'a [u8] { ... }
fn iri_str(&self) -> &'a str { ... }
fn var_s(tag: &'a str) -> Option<Self> { ... }
fn var_b(tag: &'a [u8]) -> Option<Self> { ... } }

Provided methods

fn iri_s(&self) -> &'a String

Return a string representation of the IRI associated with this entity.

fn iri_b(&self) -> &'a [u8]

fn iri_str(&self) -> &'a str

fn var_s(tag: &'a str) -> Option<Self>

fn var_b(tag: &'a [u8]) -> Option<Self>

Loading content...

Implementors

impl<'a, T> WithIRI<'a> for T where
    T: Meta<&'a IRIString>, 
[src]

Loading content...