OptionCookieValue

Type Alias OptionCookieValue 

Source
pub type OptionCookieValue = Option<CookieValue>;
Expand description

Represents an optional cookie value.

Used when a cookie value may or may not be present.

Aliased Type§

pub enum OptionCookieValue {
    None,
    Some(String),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(String)

Some value of type T.