CookieHeaderStringExt

Trait CookieHeaderStringExt 

Source
pub trait CookieHeaderStringExt<'c, C: CookieBuilder> {
    // Required method
    fn header_string_parse<S>(string: S) -> HeaderStringCookies<'c, C> 
       where S: Into<Cow<'c, str>>;
}

Required Methods§

Source

fn header_string_parse<S>(string: S) -> HeaderStringCookies<'c, C>
where S: Into<Cow<'c, str>>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'c> CookieHeaderStringExt<'c, Cookie<'static>> for Cookie<'c>

Source§

fn header_string_parse<S>(string: S) -> HeaderStringCookies<'c, Cookie<'static>>
where S: Into<Cow<'c, str>>,

Implementors§