Trait horned_owl::model::ForIRI

source ·
pub trait ForIRI: AsRef<str> + Borrow<str> + Clone + Debug + Eq + From<String> + Hash + PartialEq + Ord + PartialOrd { }
Expand description

The ForIRI is a trait that that provides the bounds for the majority of methods in Horned_OWL.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> ForIRI for T
where T: AsRef<str> + Borrow<str> + Clone + Debug + Eq + From<String> + Hash + PartialEq + Ord + PartialOrd + ?Sized,

Blanket implementation of ForIRI for any type taht implements all the bounds.