Struct webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2CookieManager
source · [−]#[repr(transparent)]pub struct ICoreWebView2CookieManager(_);
Implementations
sourceimpl ICoreWebView2CookieManager
impl ICoreWebView2CookieManager
pub unsafe fn CreateCookie<'a, Param0: IntoParam<'a, PCWSTR>, Param1: IntoParam<'a, PCWSTR>, Param2: IntoParam<'a, PCWSTR>, Param3: IntoParam<'a, PCWSTR>>(
&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, PCWSTR>, 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, PCWSTR>, Param1: IntoParam<'a, PCWSTR>>(
&self,
name: Param0,
uri: Param1
) -> Result<()>
pub unsafe fn DeleteCookiesWithDomainAndPath<'a, Param0: IntoParam<'a, PCWSTR>, Param1: IntoParam<'a, PCWSTR>, Param2: IntoParam<'a, PCWSTR>>(
&self,
name: Param0,
domain: Param1,
path: Param2
) -> Result<()>
pub unsafe fn DeleteAllCookies(&self) -> Result<()>
Trait Implementations
sourceimpl Clone for ICoreWebView2CookieManager
impl Clone for ICoreWebView2CookieManager
sourceimpl Debug for ICoreWebView2CookieManager
impl Debug for ICoreWebView2CookieManager
sourceimpl From<&'_ ICoreWebView2CookieManager> for IUnknown
impl From<&'_ ICoreWebView2CookieManager> for IUnknown
sourcefn from(value: &ICoreWebView2CookieManager) -> Self
fn from(value: &ICoreWebView2CookieManager) -> Self
Converts to this type from the input type.
sourceimpl From<ICoreWebView2CookieManager> for IUnknown
impl From<ICoreWebView2CookieManager> for IUnknown
sourcefn from(value: ICoreWebView2CookieManager) -> Self
fn from(value: ICoreWebView2CookieManager) -> Self
Converts to this type from the input type.
sourceimpl Interface for ICoreWebView2CookieManager
impl Interface for ICoreWebView2CookieManager
sourceconst IID: GUID = ::windows::core::GUID::from_u128(0x177cd9e7_b6f5_451a_94a0_5d7a3a4c4141)
const IID: GUID = ::windows::core::GUID::from_u128(0x177cd9e7_b6f5_451a_94a0_5d7a3a4c4141)
A unique identifier representing this interface.
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