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§
Object Safety§
This trait is not object safe.