[][src]Struct thirtyfour::common::cookie::Cookie

pub struct Cookie { /* fields omitted */ }

Implementations

impl Cookie[src]

pub fn new(name: &str, value: Value) -> Self[src]

Create a new Cookie struct, specifying the name and the JSON data.

pub fn expiry(&self) -> Option<DateTime<Utc>>[src]

Get the cookie expiry date/time.

pub fn value(&self) -> &Value[src]

Get the cookie value.

Trait Implementations

impl Clone for Cookie[src]

impl Debug for Cookie[src]

impl<'de> Deserialize<'de> for Cookie[src]

impl Serialize for Cookie[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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.