Struct webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2CookieManager [−][src]
#[repr(transparent)]pub struct ICoreWebView2CookieManager(pub IUnknown);
Tuple Fields
0: IUnknown
Implementations
pub unsafe fn CreateCookie<'a, Param0: IntoParam<'a, PWSTR>, Param1: IntoParam<'a, PWSTR>, Param2: IntoParam<'a, PWSTR>, Param3: IntoParam<'a, PWSTR>>(
&self,
name: Param0,
value: Param1,
domain: Param2,
path: Param3
) -> Result<ICoreWebView2Cookie>
pub unsafe fn CopyCookie<'a, Param0: IntoParam<'a, ICoreWebView2Cookie>>(
&self,
cookieparam: Param0
) -> Result<ICoreWebView2Cookie>
pub unsafe fn GetCookies<'a, Param0: IntoParam<'a, PWSTR>, Param1: IntoParam<'a, ICoreWebView2GetCookiesCompletedHandler>>(
&self,
uri: Param0,
handler: Param1
) -> Result<()>
pub unsafe fn AddOrUpdateCookie<'a, Param0: IntoParam<'a, ICoreWebView2Cookie>>(
&self,
cookie: Param0
) -> Result<()>
pub unsafe fn DeleteCookie<'a, Param0: IntoParam<'a, ICoreWebView2Cookie>>(
&self,
cookie: Param0
) -> Result<()>
pub unsafe fn DeleteCookies<'a, Param0: IntoParam<'a, PWSTR>, Param1: IntoParam<'a, PWSTR>>(
&self,
name: Param0,
uri: Param1
) -> Result<()>
Trait Implementations
Performs the conversion.
Performs the conversion.
Attempts to cast the current interface to another interface using QueryInterface
.
The name cast
is preferred to query
because there is a WinRT method named query but not one
named cast. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ICoreWebView2CookieManager
impl !Send for ICoreWebView2CookieManager
impl !Sync for ICoreWebView2CookieManager
impl Unpin for ICoreWebView2CookieManager
impl UnwindSafe for ICoreWebView2CookieManager
Blanket Implementations
Mutably borrows from an owned value. Read more
type DefaultType = Option<T>
Safety