[−][src]Struct rome::resource::IRI  
A wrapper around ResourceBase that guarantees that the resource
is an IRI and not a blank node or a literal.
Methods
impl<'g, R> IRI<'g, R> where
    R: ResourceBase<'g>, [src] 
impl<'g, R> IRI<'g, R> where
    R: ResourceBase<'g>, pub fn this(&self) -> &<Self::Graph as Graph<'g>>::IRIPtr[src] 
pub fn this(&self) -> &<Self::Graph as Graph<'g>>::IRIPtrAccess the IRI that underlies this instance.
pub fn as_str(&self) -> &str[src] 
pub fn as_str(&self) -> &strAccess the IRI that underlies this instance as a string.
Trait Implementations
impl<'g, R: ?Sized> Deref for IRI<'g, R> where
    R: ResourceBase<'g>, [src] 
impl<'g, R: ?Sized> Deref for IRI<'g, R> where
    R: ResourceBase<'g>, type Target = R
The resulting type after dereferencing.
fn deref(&self) -> &R[src] 
fn deref(&self) -> &RDereferences the value.
impl<'g, R> Clone for IRI<'g, R> where
    R: ResourceBase<'g>, [src] 
impl<'g, R> Clone for IRI<'g, R> where
    R: ResourceBase<'g>, fn clone(&self) -> Self[src] 
fn clone(&self) -> SelfReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<'g, R> PartialEq for IRI<'g, R> where
    R: ResourceBase<'g>, [src] 
impl<'g, R> PartialEq for IRI<'g, R> where
    R: ResourceBase<'g>, fn eq(&self, rhs: &IRI<'g, R>) -> bool[src] 
fn eq(&self, rhs: &IRI<'g, R>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl<'g, R> Eq for IRI<'g, R> where
    R: ResourceBase<'g>, [src] 
impl<'g, R> Eq for IRI<'g, R> where
    R: ResourceBase<'g>, impl<'g, R> PartialOrd for IRI<'g, R> where
    R: ResourceBase<'g>, [src] 
impl<'g, R> PartialOrd for IRI<'g, R> where
    R: ResourceBase<'g>, fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Self) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
#[must_use]
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<'g, R> Ord for IRI<'g, R> where
    R: ResourceBase<'g>, [src] 
impl<'g, R> Ord for IRI<'g, R> where
    R: ResourceBase<'g>, fn cmp(&self, other: &Self) -> Ordering[src] 
fn cmp(&self, other: &Self) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src] 
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src] 
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl<'g, R: 'g> ResourceBase<'g> for IRI<'g, R> where
    R: ResourceBase<'g>, [src] 
impl<'g, R: 'g> ResourceBase<'g> for IRI<'g, R> where
    R: ResourceBase<'g>, type Graph = R::Graph
Type of the graph that on which this resource is mapped.
type SubjectIter = IRISubjectIter<'g, R>
fn new(
    this: Resource<'g, <Self::Graph as Graph<'g>>::BlankNodePtr, <Self::Graph as Graph<'g>>::IRIPtr, <Self::Graph as Graph<'g>>::LiteralPtr>, 
    graph: &'g OntologyAdapter<'g, Self::Graph>
) -> Self[src] 
fn new(
    this: Resource<'g, <Self::Graph as Graph<'g>>::BlankNodePtr, <Self::Graph as Graph<'g>>::IRIPtr, <Self::Graph as Graph<'g>>::LiteralPtr>, 
    graph: &'g OntologyAdapter<'g, Self::Graph>
) -> SelfWrap a [Resource][graph] with an ontology class. And link a [ResourceBase][resource] Read more
fn iter(graph: &'g OntologyAdapter<'g, Self::Graph>) -> Self::SubjectIter[src] 
fn iter(graph: &'g OntologyAdapter<'g, Self::Graph>) -> Self::SubjectIterIterate over all instances of this class
fn this(
    &self
) -> &Resource<'g, <Self::Graph as Graph<'g>>::BlankNodePtr, <Self::Graph as Graph<'g>>::IRIPtr, <Self::Graph as Graph<'g>>::LiteralPtr>[src] 
fn this(
    &self
) -> &Resource<'g, <Self::Graph as Graph<'g>>::BlankNodePtr, <Self::Graph as Graph<'g>>::IRIPtr, <Self::Graph as Graph<'g>>::LiteralPtr>The Resource that underlies this wrapper.
fn adapter(&self) -> &'g OntologyAdapter<'g, Self::Graph>[src] 
fn adapter(&self) -> &'g OntologyAdapter<'g, Self::Graph>The adapter that wraps the graph.
ⓘImportant traits for ObjectIter<'g, R>fn iter_objects<O>(
    &self, 
    predicate: Option<&<Self::Graph as Graph<'g>>::IRIPtr>
) -> ObjectIter<'g, O> where
    O: ResourceBase<'g, Graph = Self::Graph>, [src] 
fn iter_objects<O>(
    &self, 
    predicate: Option<&<Self::Graph as Graph<'g>>::IRIPtr>
) -> ObjectIter<'g, O> where
    O: ResourceBase<'g, Graph = Self::Graph>, iterate over all the objects for this subject and the given predicate
fn iri(&self) -> Option<IRI<'g, Self>>[src] 
fn iri(&self) -> Option<IRI<'g, Self>>Return this resource as an IRI, if it is an IRI.
impl<'g, G: 'g> Type<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Alt<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Bag<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, HTML<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> First<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> First<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#first
ⓘImportant traits for ObjectIter<'g, R>fn first<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn first<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:first The first item in the subject RDF list. http://www.w3.org/1999/02/22-rdf-syntax-ns#first Read more
impl<'g, G: 'g> Rest<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Rest<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#rest
ⓘImportant traits for ObjectIter<'g, R>fn rest<G>(&self) -> ObjectIter<'g, List<'g, G>> where
    List<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn rest<G>(&self) -> ObjectIter<'g, List<'g, G>> where
    List<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:rest The rest of the subject RDF list after the first item. http://www.w3.org/1999/02/22-rdf-syntax-ns#rest Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, List<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, PlainLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Domain<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Domain<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#domain
ⓘImportant traits for ObjectIter<'g, R>fn domain<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn domain<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:domain A domain of the subject property. http://www.w3.org/2000/01/rdf-schema#domain Read more
impl<'g, G: 'g> Range<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Range<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#range
ⓘImportant traits for ObjectIter<'g, R>fn range<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn range<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:range A range of the subject property. http://www.w3.org/2000/01/rdf-schema#range Read more
impl<'g, G: 'g> SubPropertyOf<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SubPropertyOf<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#subPropertyOf
ⓘImportant traits for ObjectIter<'g, R>fn sub_property_of<G>(&self) -> ObjectIter<'g, Property<'g, G>> where
    Property<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn sub_property_of<G>(&self) -> ObjectIter<'g, Property<'g, G>> where
    Property<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:subPropertyOf The subject is a subproperty of a property. http://www.w3.org/2000/01/rdf-schema#subPropertyOf Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Property<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Seq<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Object<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Object<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#object
ⓘImportant traits for ObjectIter<'g, R>fn object<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn object<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:object The object of the subject RDF statement. http://www.w3.org/1999/02/22-rdf-syntax-ns#object Read more
impl<'g, G: 'g> Predicate<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Predicate<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#predicate
ⓘImportant traits for ObjectIter<'g, R>fn predicate<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn predicate<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:predicate The predicate of the subject RDF statement. http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate Read more
impl<'g, G: 'g> Subject<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Subject<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#subject
ⓘImportant traits for ObjectIter<'g, R>fn subject<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn subject<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:subject The subject of the subject RDF statement. http://www.w3.org/1999/02/22-rdf-syntax-ns#subject Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Statement<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, XMLLiteral<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, LangString<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> SubClassOf<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SubClassOf<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#subClassOf
ⓘImportant traits for ObjectIter<'g, R>fn sub_class_of<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn sub_class_of<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:subClassOf The subject is a subclass of a class. http://www.w3.org/2000/01/rdf-schema#subClassOf Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Class<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Container<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Domain<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Domain<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#domain
ⓘImportant traits for ObjectIter<'g, R>fn domain<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn domain<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:domain A domain of the subject property. http://www.w3.org/2000/01/rdf-schema#domain Read more
impl<'g, G: 'g> Range<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Range<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#range
ⓘImportant traits for ObjectIter<'g, R>fn range<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn range<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:range A range of the subject property. http://www.w3.org/2000/01/rdf-schema#range Read more
impl<'g, G: 'g> SubPropertyOf<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SubPropertyOf<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#subPropertyOf
ⓘImportant traits for ObjectIter<'g, R>fn sub_property_of<G>(&self) -> ObjectIter<'g, Property<'g, G>> where
    Property<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn sub_property_of<G>(&self) -> ObjectIter<'g, Property<'g, G>> where
    Property<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:subPropertyOf The subject is a subproperty of a property. http://www.w3.org/2000/01/rdf-schema#subPropertyOf Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, ContainerMembershipProperty<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> SubClassOf<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SubClassOf<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#subClassOf
ⓘImportant traits for ObjectIter<'g, R>fn sub_class_of<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn sub_class_of<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:subClassOf The subject is a subclass of a class. http://www.w3.org/2000/01/rdf-schema#subClassOf Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Datatype<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Literal<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
impl<'g, G: 'g> Type<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Type<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#type
ⓘImportant traits for ObjectIter<'g, R>fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn a<G>(&self) -> ObjectIter<'g, Class<'g, G>> where
    Class<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:type The subject is an instance of a class. http://www.w3.org/1999/02/22-rdf-syntax-ns#type Read more
impl<'g, G: 'g> Value<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Value<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/1999/02/22-rdf-syntax-ns#value
ⓘImportant traits for ObjectIter<'g, R>fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn value<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdf:value Idiomatic property used for structured values. http://www.w3.org/1999/02/22-rdf-syntax-ns#value Read more
impl<'g, G: 'g> Comment<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Comment<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#comment
ⓘImportant traits for ObjectIter<'g, R>fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn comment<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:comment A description of the subject resource. http://www.w3.org/2000/01/rdf-schema#comment Read more
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> IsDefinedBy<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#isDefinedBy
ⓘImportant traits for ObjectIter<'g, R>fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn is_defined_by<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:isDefinedBy The defininition of the subject resource. http://www.w3.org/2000/01/rdf-schema#isDefinedBy Read more
impl<'g, G: 'g> Label<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Label<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#label
ⓘImportant traits for ObjectIter<'g, R>fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn label<G>(&self) -> ObjectIter<'g, Literal<'g, G>> where
    Literal<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:label A human-readable name for the subject. http://www.w3.org/2000/01/rdf-schema#label Read more
impl<'g, G: 'g> Member<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> Member<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#member
ⓘImportant traits for ObjectIter<'g, R>fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn member<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:member A member of the subject resource. http://www.w3.org/2000/01/rdf-schema#member Read more
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, [src] 
impl<'g, G: 'g> SeeAlso<'g> for IRI<'g, Resource<'g, G>> where
    G: Graph<'g>, fn property_iri() -> &'static str[src] 
fn property_iri() -> &'static strhttp://www.w3.org/2000/01/rdf-schema#seeAlso
ⓘImportant traits for ObjectIter<'g, R>fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, [src] 
fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>> where
    Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
    G: Graph<'g>,
    Self: 'g, rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso Read more
Auto Trait Implementations
Blanket Implementations
impl<T> ToOwned for T where
    T: Clone, [src] 
impl<T> ToOwned for T where
    T: Clone, type Owned = T
fn to_owned(&self) -> T[src] 
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src] 
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API.  (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T[src] 
impl<T> From for Timpl<T, U> Into for T where
    U: From<T>, [src] 
impl<T, U> Into for T where
    U: From<T>, impl<T, U> TryFrom for T where
    T: From<U>, [src] 
impl<T, U> TryFrom for T where
    T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src] 
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
    T: ?Sized, [src] 
impl<T> Borrow for T where
    T: ?Sized, impl<T, U> TryInto for T where
    U: TryFrom<T>, [src] 
impl<T, U> TryInto for T where
    U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src] 
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> BorrowMut for T where
    T: ?Sized, [src] 
impl<T> BorrowMut for T where
    T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src] 
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Any for T where
    T: 'static + ?Sized, [src] 
impl<T> Any for T where
    T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src] 
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API.  (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more