pub trait MessageBuffer {
// Required method
fn get_buffer_info(&self) -> BufferInfo;
}Expand description
Trait for probing message buffer internal metrics.
Required Methods§
Sourcefn get_buffer_info(&self) -> BufferInfo
fn get_buffer_info(&self) -> BufferInfo
Functional equivalent of otsys::otMessageGetBufferInfo.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".