[][src]Struct actix_request_identifier::RequestIdentifier

pub struct RequestIdentifier { /* fields omitted */ }

A middleware for generating per-request unique IDs

Methods

impl RequestIdentifier[src]

pub fn with_uuid() -> Self[src]

Create a default middleware using DEFAULT_HEADER as the header name and UUID v4 for ID generation.

pub fn with_header(header_name: &'static str) -> Self[src]

Create a middleware using a custom header name and UUID v4 for ID generation.

pub fn header(self, header_name: &'static str) -> Self[src]

Change the header name for this middleware.

pub fn with_generator(id_generator: fn() -> HeaderValue) -> Self[src]

Create a middleware using DEFAULT_HEADER as the header name and IDs as generated by id_generator. id_generator should return a unique ID (ASCII only), each time it is invoked.

pub fn generator(self, id_generator: fn() -> HeaderValue) -> Self[src]

Change the ID generator for this middleware.

Trait Implementations

impl Default for RequestIdentifier[src]

impl<S, B> Transform<S> for RequestIdentifier where
    S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = ActixError>,
    S::Future: 'static,
    B: 'static, 
[src]

type Request = S::Request

Requests handled by the service.

type Response = S::Response

Responses given by the service.

type Error = S::Error

Errors produced by the service.

type InitError = ()

Errors produced while building a transform service.

type Transform = RequestIdMiddleware<S>

The TransformService value created by this factory

type Future = Ready<Result<Self::Transform, Self::InitError>>

The future response value.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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<V, T> VZip<V> for T where
    V: MultiLane<T>,