Struct webview2_com::Microsoft::Web::WebView2::Win32::ICoreWebView2CookieManager
source · [−]#[repr(transparent)]pub struct ICoreWebView2CookieManager(_);
Implementations
sourceimpl ICoreWebView2CookieManager
impl ICoreWebView2CookieManager
pub unsafe fn CreateCookie<P0, P1, P2, P3>(
&self,
name: P0,
value: P1,
domain: P2,
path: P3
) -> Result<ICoreWebView2Cookie, Error> where
P0: Into<PCWSTR>,
P1: Into<PCWSTR>,
P2: Into<PCWSTR>,
P3: Into<PCWSTR>,
pub unsafe fn CopyCookie<'a, P0>(
&self,
cookieparam: P0
) -> Result<ICoreWebView2Cookie, Error> where
P0: Into<InParam<'a, ICoreWebView2Cookie>>,
pub unsafe fn GetCookies<'a, P0, P1>(
&self,
uri: P0,
handler: P1
) -> Result<(), Error> where
P0: Into<PCWSTR>,
P1: Into<InParam<'a, ICoreWebView2GetCookiesCompletedHandler>>,
pub unsafe fn AddOrUpdateCookie<'a, P0>(&self, cookie: P0) -> Result<(), Error> where
P0: Into<InParam<'a, ICoreWebView2Cookie>>,
pub unsafe fn DeleteCookie<'a, P0>(&self, cookie: P0) -> Result<(), Error> where
P0: Into<InParam<'a, ICoreWebView2Cookie>>,
pub unsafe fn DeleteCookies<P0, P1>(&self, name: P0, uri: P1) -> Result<(), Error> where
P0: Into<PCWSTR>,
P1: Into<PCWSTR>,
pub unsafe fn DeleteCookiesWithDomainAndPath<P0, P1, P2>(
&self,
name: P0,
domain: P1,
path: P2
) -> Result<(), Error> where
P0: Into<PCWSTR>,
P1: Into<PCWSTR>,
P2: Into<PCWSTR>,
pub unsafe fn DeleteAllCookies(&self) -> Result<(), Error>
Trait Implementations
sourceimpl Clone for ICoreWebView2CookieManager
impl Clone for ICoreWebView2CookieManager
sourcefn clone(&self) -> ICoreWebView2CookieManager
fn clone(&self) -> ICoreWebView2CookieManager
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ICoreWebView2CookieManager
impl Debug for ICoreWebView2CookieManager
sourceimpl Interface for ICoreWebView2CookieManager
impl Interface for ICoreWebView2CookieManager
sourceconst IID: GUID = ::windows::core::GUID::from_u128(31220508354723701857172037864566571329)
const IID: GUID = ::windows::core::GUID::from_u128(31220508354723701857172037864566571329)
A unique identifier representing this interface.
sourceimpl PartialEq<ICoreWebView2CookieManager> for ICoreWebView2CookieManager
impl PartialEq<ICoreWebView2CookieManager> for ICoreWebView2CookieManager
sourcefn eq(&self, other: &ICoreWebView2CookieManager) -> bool
fn eq(&self, other: &ICoreWebView2CookieManager) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for ICoreWebView2CookieManager
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more