Trait CheckSet

Source
pub trait CheckSet<T> {
    // Required method
    fn check_set(&self, value: T) -> bool;
}

Required Methods§

Source

fn check_set(&self, value: T) -> bool

Implementations on Foreign Types§

Source§

impl<T> CheckSet<T> for Cell<T>
where T: PartialOrd + Copy,

Source§

fn check_set(&self, value: T) -> bool

Implementors§

Source§

impl<T> CheckSet<T> for CloneCell<T>
where T: PartialOrd + Copy,