Throttleable

Trait Throttleable 

Source
pub trait Throttleable<P>
where Self: Sized,
{ // Required method fn throttled(self) -> Throttled<Self, P>; }

Required Methods§

Source

fn throttled(self) -> Throttled<Self, P>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<P, T> Throttleable<P> for T
where P: Default,