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%?");
// 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> Freeze for Display<'a, 'c>
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>
impl<'a, 'c> UnwindSafe for Display<'a, 'c>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more