Returns a `CookieBuilder` from the `cookie-rs` library to build a `Cookie`. # Example ``` use octane::prelude::*; use cookie::Cookie as CookieRs; let cookie = octane::cookie::Cookie::from( octane::cookie::Cookie::build("name", "value") .http_only(true) .finish() ); println!("{:?}", cookie); ```
(name: &'a str, value: &'a str)
source not stored for this graph (policy: none)
no outgoing calls
no test coverage detected