[go: up one dir, main page]

Type Definition rocket::http::Cookies [] [src]

type Cookies = CookieJar<'static>;

Type alias to a 'static CookieJar.

A CookieJar should never be used without a 'static lifetime. As a result, you should always use this alias.

Trait Implementations

impl<'a, 'r> FromRequest<'a, 'r> for &'a Cookies
[src]

The associated error to be returned if derivation fails.

Derives an instance of Self from the incoming request metadata. Read more