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.
pub trait Backpressureable: Clone + 'static {
// Required method
fn byte_size(&self) -> usize;
}A trait representing a type that can be used in backpressure.