pub struct Cookie<'a>(_);
Expand description

A single HTTP cookie.

Implementations

Construct a new cookie with the given name and value.

The name of the cookie.

The value of the cookie.

Returns true if the ‘HttpOnly’ directive is enabled.

Returns true if the ‘Secure’ directive is enabled.

Returns true if ‘SameSite’ directive is ‘Lax’.

Returns true if ‘SameSite’ directive is ‘Strict’.

Returns the path directive of the cookie, if set.

Returns the domain directive of the cookie, if set.

Get the Max-Age information.

The cookie expiration time.

Trait Implementations

Formats the value using the given formatter. 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.

Calls U::from(self).

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

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.