pub trait Write<T> {
// Required method
fn write(&mut self, value: T);
}Expand description
A trait for objects which provide non-dropping write access to their value.
pub trait Write<T> {
// Required method
fn write(&mut self, value: T);
}A trait for objects which provide non-dropping write access to their value.