#[repr(C)]pub struct SoupCookie {
pub name: *mut c_char,
pub value: *mut c_char,
pub domain: *mut c_char,
pub path: *mut c_char,
pub expires: *mut SoupDate,
pub secure: gboolean,
pub http_only: gboolean,
}
Fields§
§name: *mut c_char
§value: *mut c_char
§domain: *mut c_char
§path: *mut c_char
§expires: *mut SoupDate
§secure: gboolean
§http_only: gboolean
Trait Implementations§
Source§impl Clone for SoupCookie
impl Clone for SoupCookie
Source§fn clone(&self) -> SoupCookie
fn clone(&self) -> SoupCookie
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SoupCookie
impl Debug for SoupCookie
impl Copy for SoupCookie
Auto Trait Implementations§
impl Freeze for SoupCookie
impl RefUnwindSafe for SoupCookie
impl !Send for SoupCookie
impl !Sync for SoupCookie
impl Unpin for SoupCookie
impl UnwindSafe for SoupCookie
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