pub trait Put<T> { // Required method fn put(&mut self, value: T); }
A trait for objects which provide dropping write access to their value.
Puts the value the given value, dropping the old value.