pub struct Display<'a, 'c> where
'c: 'a, { /* private fields */ }
Available on crate feature
cookies
only.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
Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more