Struct cookie::Display[][src]

pub struct Display<'a, 'c: 'a> { /* fields omitted */ }

Wrapper around Cookie whose Display implementation either percent-encodes the cookie’s name and value, skips displaying the cookie’s parameters (only displaying it’s name and value), or both.

A value of this type can be obtained via Cookie::encoded() and Cookie::stripped(), or an arbitrary chaining of the two methods. This type should only be used for its Display implementation.

Example

use cookie::Cookie;

let c = Cookie::build("my name", "this; value%?").secure(true).finish();
assert_eq!(&c.stripped().to_string(), "my name=this; value%?");
// Note: `encoded()` is only available when `percent-encode` is enabled.
assert_eq!(&c.encoded().to_string(), "my%20name=this%3B%20value%25%3F; Secure");
assert_eq!(&c.stripped().encoded().to_string(), "my%20name=this%3B%20value%25%3F");
assert_eq!(&c.encoded().stripped().to_string(), "my%20name=this%3B%20value%25%3F");

Implementations

impl<'a, 'c> Display<'a, 'c>[src]

pub fn encoded(self) -> Self[src]

This is supported on crate feature percent-encode only.

Percent-encode the name and value pair.

pub fn stripped(self) -> Self[src]

Only display the name and value.

Trait Implementations

impl<'a, 'c: 'a> Display for Display<'a, 'c>[src]

Auto Trait Implementations

impl<'a, 'c> RefUnwindSafe for Display<'a, 'c>

impl<'a, 'c> Send for Display<'a, 'c>

impl<'a, 'c> Sync for Display<'a, 'c>

impl<'a, 'c> Unpin for Display<'a, 'c> where
    'c: 'a, 

impl<'a, 'c> UnwindSafe for Display<'a, 'c>

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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[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>,