pub trait ICoreWebView2_3_Impl: Sized + ICoreWebView2_2_Impl {
    // Required methods
    fn TrySuspend(
        &self,
        handler: Option<&ICoreWebView2TrySuspendCompletedHandler>
    ) -> Result<()>;
    fn Resume(&self) -> Result<()>;
    fn IsSuspended(&self, issuspended: *mut BOOL) -> Result<()>;
    fn SetVirtualHostNameToFolderMapping(
        &self,
        hostname: &PCWSTR,
        folderpath: &PCWSTR,
        accesskind: COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND
    ) -> Result<()>;
    fn ClearVirtualHostNameToFolderMapping(
        &self,
        hostname: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§