pub trait Set<T>: Sized {
    fn set(&self, value: T);
}

Required Methods

Implementors