pub trait ThrottledStream {
// Provided method
fn throttle(self, pool: ThrottlePool) -> Throttled<Self>
where Self: Stream + Sized { ... }
}Expand description
Provides a throttle() method on all Stream’s.
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".