Struct actix_web_requestid::RequestID[][src]

pub struct RequestID(_);

The HTTP Request ID

note: must contain as String that is valid to put in HTTP Header values using base62 / base64 is a great way to sanitize the string

It can also be extracted from a request and Helper converter to be able to extract the RequestID easily in an handler

Trait Implementations

impl Debug for RequestID
[src]

Formats the value using the given formatter. Read more

impl Clone for RequestID
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RequestID
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<S> FromRequest<S> for RequestID
[src]

Configuration for conversion process

Future that resolves to a Self

Convert request to a Self

Convert request to a Self Read more

Auto Trait Implementations

impl Send for RequestID

impl Sync for RequestID