Trait read_write_api::AutoWriteApi
source · pub trait AutoWriteApi {
type Target;
// Required method
fn get_mut(&mut self) -> &mut Self::Target;
}Expand description
Marker trait used to tell the compiler to automatically implement WriteApi
for references to instances of the type.
See the Examples section of the ReadWriteApi documentation.