Trait write_only::Write[][src]

pub trait Write<T> {
    fn write(&mut self, value: T);
}
Expand description

A trait for objects which provide non-dropping write access to their value.

Required methods

Writes the value the given value without dropping the old value.

Implementors