Trait actix_web_requestid::RequestIDGetter[][src]

pub trait RequestIDGetter {
    fn request_id(&self) -> RequestID;
}

Permits retrieving the HttpRequest associated RequestID

Required Methods

Returns the HttpRequest RequestID, if the HttpRequest currently has none it creates one and associates it to the HttpRequest.

Implementations on Foreign Types

impl<S> RequestIDGetter for HttpRequest<S>
[src]

Implementors