pub trait Compare {
    // Required method
    fn compare(&self, other: &Self) -> bool;
}
Expand description

JSON-LD comparison.

Required Methods§

source

fn compare(&self, other: &Self) -> bool

Implementations on Foreign Types§

source§

impl<T: Compare> Compare for Stripped<T>

source§

fn compare(&self, other: &Self) -> bool

Implementors§

source§

impl<M> Compare for Value<M>

source§

impl<M> Compare for MetaValue<M>