Trait rdftk_core::model::Equiv[][src]

pub trait Equiv<T> where
    T: Sized
{ fn eqv(&self, other: &T) -> bool; fn not_eqv(&self, other: &T) -> bool { ... } }
Expand description

Denotes equivalence between Self and some other type. Equivalence is a very specific, non-symmetric, non-transitive, directed type to type equality.

Required methods

Returns true if other is equivalent to self, else false.

Provided methods

Returns true if other is not equivalent to self, else false.

Implementors