[][src]Struct limitation::Builder

pub struct Builder<'a> { /* fields omitted */ }

A builder for a Limiter.

Methods

impl<'_> Builder<'_>[src]

pub fn limit(&mut self, limit: usize) -> &mut Self[src]

Sets a new maximum limit for the Limiter.

pub fn period(&mut self, period: Duration) -> &mut Self[src]

Sets a new period duration for the Limiter.

pub fn finish(&self) -> Result<Limiter, Error>[src]

Finializes and returns a Limiter.

Note that this method will connect to the Redis server to test its connection which is a synchronous operation.

Errors

Returns an Err if the Redis client fails to be created or fails to connect.

Auto Trait Implementations

impl<'a> Send for Builder<'a>

impl<'a> Sync for Builder<'a>

impl<'a> Unpin for Builder<'a>

impl<'a> UnwindSafe for Builder<'a>

impl<'a> RefUnwindSafe for Builder<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]