OptionCookiesValue

Type Alias OptionCookiesValue 

Source
pub type OptionCookiesValue = Option<String>;
Expand description

Represents an optional cookie value.

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

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

Some(String)

Some value of type T.