pub trait ReadReply {
// Required method
fn with_dataver(self, dataver: u32) -> Result<Option<impl Reply>, Error>;
}Expand description
A trait for encoding the attribute value for an attribute read operation.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".