pub trait Backpressureable: Clone + 'static {
// Required method
fn byte_size(&self) -> usize;
}Expand description
A trait representing a type that can be used in backpressure.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".