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