Struct salvo::http::cookie::Display[][src]

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

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) -> Display<'a, 'c>[src]

This is supported on crate feature percent-encode only.

Percent-encode the name and value pair.

pub fn stripped(self) -> Display<'a, 'c>[src]

Only display the name and value.

Trait Implementations

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

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V