pub enum LimitError {
    Error,
    GovernedRequest(u64Quota),
    MissingClientIpAddr,
    MissingRoute,
    MissingRouteName,
}
Expand description

Errors for governed requests which implement Responder.

Variants

Error

Any other undefined LimitError

GovernedRequest(u64Quota)

Governed request for the next provided seconds. Provided Quota will be used for setting additional HTTP headers defined by draft-ietf-httpapi-ratelimit-headers. These headers could be used in service clients to use the service in a more compliant way for its resources.

MissingClientIpAddr

There is no remote client IP address known in the request. Might be a misconfigured server environment.

MissingRoute

Route is not available which might be only the case in fairings

MissingRouteName

There is a route without name and this can not be matched for rate limiting

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Implements Responder to provide Result possibilities.

Returns Ok if a Response could be generated successfully. Otherwise, returns an Err with a failing Status. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Converts self into a collection.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more