pub struct RsCookie {
pub domain: String,
pub http_only: bool,
pub path: String,
pub secure: bool,
pub expiration: Option<f64>,
pub name: String,
pub value: String,
}
Fields§
§domain: String
§http_only: bool
§path: String
§secure: bool
§expiration: Option<f64>
§name: String
§value: String
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RsCookie
impl<'de> Deserialize<'de> for RsCookie
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for RsCookie
Auto Trait Implementations§
impl Freeze for RsCookie
impl RefUnwindSafe for RsCookie
impl Send for RsCookie
impl Sync for RsCookie
impl Unpin for RsCookie
impl UnwindSafe for RsCookie
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more