Struct ratelimit_meter::Allower [] [src]

pub struct Allower {}

The most naive implementation of a rate-limiter ever: Always allows every cell through.

Trait Implementations

impl Copy for Allower
[src]

impl Clone for Allower
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Decider for Allower
[src]

Allower never returns a negative answer, so negative answers don't carry information.

[src]

Allows the cell through unconditionally.

[src]

Builds the most useless rate-limiter in existence.

[src]

Tests if a single cell can be accomodated now. See test_and_update.