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%?");