[−][src]Struct headers::Cookie
Cookie
header, defined in RFC6265
If the user agent does attach a Cookie header field to an HTTP request, the user agent must send the cookie-string as the value of the header field.
When the user agent generates an HTTP request, the user agent MUST NOT attach more than one Cookie header field.
Example values
SID=31d4d96e407aad42
SID=31d4d96e407aad42; lang=en-US
Implementations
impl Cookie
[src]
pub fn get(&self, name: &str) -> Option<&str>
[src]
Lookup a value for a cookie name.
Example
use headers::{Cookie, HeaderMap, HeaderMapExt, HeaderValue}; // Setup the header map with strings... let mut headers = HeaderMap::new(); headers.insert("cookie", HeaderValue::from_static("lang=en-US")); // Parse a `Cookie` so we can play with it... let cookie = headers .typed_get::<Cookie>() .expect("we just inserted a valid Cookie"); assert_eq!(cookie.get("lang"), Some("en-US")); assert_eq!(cookie.get("SID"), None);
pub fn len(&self) -> usize
[src]
Get the number of key-value pairs this Cookie
contains.
pub fn iter(&self) -> impl Iterator<Item = (&str, &str)>
[src]
Iterator the key-value pairs of this Cookie
header.
Trait Implementations
impl Clone for Cookie
[src]
impl Debug for Cookie
[src]
impl Header for Cookie
[src]
fn name() -> &'static HeaderName
[src]
fn decode<'i, I>(values: &mut I) -> Result<Self, Error> where
I: Iterator<Item = &'i HeaderValue>,
[src]
I: Iterator<Item = &'i HeaderValue>,
fn encode<E: Extend<HeaderValue>>(&self, values: &mut E)
[src]
Auto Trait Implementations
impl RefUnwindSafe for Cookie
impl Send for Cookie
impl Sync for Cookie
impl Unpin for Cookie
impl UnwindSafe for Cookie
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,