pub struct Display<'a, 'c: 'a> {
pub(crate) cookie: &'a Cookie<'c>,
pub(crate) strip: bool,
}
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).build();
assert_eq!(&c.stripped().to_string(), "my name=this; value%?");
Fields§
§strip: bool
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