pub trait Measurable {
// Required method
fn measure(&self) -> usize;
}Expand description
FIDL types that can have their in-line and out-of-line message byte payload size measured.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".