Skip to main content

LinkedDataPredicateObjects

Trait LinkedDataPredicateObjects 

Source
pub trait LinkedDataPredicateObjects<I: Interpretation = ()> {
    // Required method
    fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>
       where S: PredicateObjectsVisitor<I>;
}
Expand description

Type representing the objects of an RDF subject’s predicate binding.

Required Methods§

Source

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Visits the objects this predicate points at.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<I: Interpretation, T: ?Sized + LinkedDataPredicateObjects<I>> LinkedDataPredicateObjects<I> for &T

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation, T: ?Sized + LinkedDataPredicateObjects<I>> LinkedDataPredicateObjects<I> for Box<T>

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation, T: LinkedDataSubject<I> + LinkedDataResource<I>> LinkedDataPredicateObjects<I> for Option<T>

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation, T: LinkedDataSubject<I> + LinkedDataResource<I>> LinkedDataPredicateObjects<I> for Vec<T>

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation, T: LinkedDataSubject<I> + LinkedDataResource<I>> LinkedDataPredicateObjects<I> for [T]

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for ()

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for BlankId

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for BlankIdBuf

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for DateTime

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for Id

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for Iri<&str>

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for IriBuf

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for String

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for i8

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for i16

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for i32

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for i64

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for str

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for u8

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for u16

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for u32

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Source§

impl<I: Interpretation> LinkedDataPredicateObjects<I> for u64

Source§

fn visit_objects<S>(&self, visitor: S) -> Result<S::Ok, S::Error>

Implementors§