[][src]Struct electron_sys::Cookie

#[repr(transparent)]
pub struct Cookie { /* fields omitted */ }

Methods

impl Cookie[src]

pub fn domain(&self) -> Option<JsString>[src]

impl Cookie[src]

pub fn set_domain(&self, value: Option<JsString>)[src]

impl Cookie[src]

impl Cookie[src]

impl Cookie[src]

pub fn host_only(&self) -> Option<JsString>[src]

impl Cookie[src]

pub fn set_host_only(&self, value: Option<JsString>)[src]

impl Cookie[src]

pub fn http_only(&self) -> Option<JsString>[src]

impl Cookie[src]

pub fn set_http_only(&self, value: Option<JsString>)[src]

impl Cookie[src]

pub fn name(&self) -> JsString[src]

impl Cookie[src]

pub fn set_name(&self, value: JsString)[src]

impl Cookie[src]

pub fn path(&self) -> Option<JsString>[src]

impl Cookie[src]

pub fn set_path(&self, value: Option<JsString>)[src]

impl Cookie[src]

pub fn secure(&self) -> Option<JsString>[src]

impl Cookie[src]

pub fn set_secure(&self, value: Option<JsString>)[src]

impl Cookie[src]

pub fn session(&self) -> Option<JsString>[src]

impl Cookie[src]

pub fn set_session(&self, value: Option<JsString>)[src]

impl Cookie[src]

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

impl Cookie[src]

pub fn set_value(&self, value: JsString)[src]

Trait Implementations

impl AsRef<Cookie> for Cookie[src]

impl AsRef<JsValue> for Cookie[src]

impl Clone for Cookie[src]

impl Debug for Cookie[src]

impl Deref for Cookie[src]

type Target = JsValue

The resulting type after dereferencing.

impl From<Cookie> for JsValue[src]

impl From<JsValue> for Cookie[src]

impl FromWasmAbi for Cookie[src]

type Abi = <JsValue as FromWasmAbi>::Abi

The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more

impl IntoWasmAbi for Cookie[src]

type Abi = <JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl<'a> IntoWasmAbi for &'a Cookie[src]

type Abi = <&'a JsValue as IntoWasmAbi>::Abi

The wasm ABI type that this converts into when crossing the ABI boundary. Read more

impl JsCast for Cookie[src]

impl OptionFromWasmAbi for Cookie[src]

impl OptionIntoWasmAbi for Cookie[src]

impl<'a> OptionIntoWasmAbi for &'a Cookie[src]

impl PartialEq<Cookie> for Cookie[src]

impl RefFromWasmAbi for Cookie[src]

type Abi = <JsValue as RefFromWasmAbi>::Abi

The wasm ABI type references to Self are recovered from.

type Anchor = ManuallyDrop<Cookie>

The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more

impl StructuralPartialEq for Cookie[src]

impl WasmDescribe 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> From<T> for T[src]

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

impl<T> ReturnWasmAbi for T where
    T: IntoWasmAbi
[src]

type Abi = <T as IntoWasmAbi>::Abi

Same as IntoWasmAbi::Abi

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.