pub trait SeeAlso<'g>: ResourceBase<'g>where
    Self: Sized,
{ fn property_iri() -> &'static str { ... } fn see_also<G>(&self) -> ObjectIter<'g, Resource<'g, G>>Notable traits for ObjectIter<'g, R>impl<'g, R> Iterator for ObjectIter<'g, R>where
    R: ResourceBase<'g>,
type Item = R;

    where
        Resource<'g, G>: ResourceBase<'g, Graph = Self::Graph>,
        G: Graph<'g>,
        Self: 'g
, { ... } }
Expand description

rdfs:seeAlso Further information about the subject resource.

Provided Methods

http://www.w3.org/2000/01/rdf-schema#seeAlso

rdfs:seeAlso Further information about the subject resource. http://www.w3.org/2000/01/rdf-schema#seeAlso

Implementors