pub struct Display<'a, 'c: 'a> { /* private fields */ }
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%?");
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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more