Docs.rs
  • webview2-com-sys-0.28.0
    • webview2-com-sys 0.28.0
    • Docs.rs crate page
    • MIT
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • wravery
    • Dependencies
      • windows ^0.52 normal
      • windows-core ^0.52 normal
      • thiserror ^1.0.26 build
    • Versions
    • 0.02% of the crate is documented
  • Go to latest version
  • Platform
    • aarch64-pc-windows-msvc
    • i686-pc-windows-gnu
    • i686-pc-windows-msvc
    • x86_64-pc-windows-gnu
    • x86_64-pc-windows-msvc
  • Feature flags
  • Rust
    • About docs.rs
    • Privacy policy
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

webview2_com_sys0.28.0

ICoreWebView2Profile2_Impl

Required Methods

  • ClearBrowsingData
  • ClearBrowsingDataAll
  • ClearBrowsingDataInTimeRange

Object Safety

Implementors

In webview2_com_sys::Microsoft::Web::WebView2::Win32

?
Change settings

Trait webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2Profile2_Impl

source ·
pub trait ICoreWebView2Profile2_Impl: Sized + ICoreWebView2Profile_Impl {
    // Required methods
    fn ClearBrowsingData(
        &self,
        datakinds: COREWEBVIEW2_BROWSING_DATA_KINDS,
        handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler>
    ) -> Result<()>;
    fn ClearBrowsingDataInTimeRange(
        &self,
        datakinds: COREWEBVIEW2_BROWSING_DATA_KINDS,
        starttime: f64,
        endtime: f64,
        handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler>
    ) -> Result<()>;
    fn ClearBrowsingDataAll(
        &self,
        handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler>
    ) -> Result<()>;
}

Required Methods§

source

fn ClearBrowsingData( &self, datakinds: COREWEBVIEW2_BROWSING_DATA_KINDS, handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler> ) -> Result<()>

source

fn ClearBrowsingDataInTimeRange( &self, datakinds: COREWEBVIEW2_BROWSING_DATA_KINDS, starttime: f64, endtime: f64, handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler> ) -> Result<()>

source

fn ClearBrowsingDataAll( &self, handler: Option<&ICoreWebView2ClearBrowsingDataCompletedHandler> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§