webview2_com::Microsoft::Web::WebView2::Win32

Trait ICoreWebView2Environment14_Impl

Source
pub trait ICoreWebView2Environment14_Impl: ICoreWebView2Environment13_Impl {
    // Required methods
    fn CreateWebFileSystemFileHandle(
        &self,
        path: &PCWSTR,
        permission: COREWEBVIEW2_FILE_SYSTEM_HANDLE_PERMISSION,
    ) -> Result<ICoreWebView2FileSystemHandle, Error>;
    fn CreateWebFileSystemDirectoryHandle(
        &self,
        path: &PCWSTR,
        permission: COREWEBVIEW2_FILE_SYSTEM_HANDLE_PERMISSION,
    ) -> Result<ICoreWebView2FileSystemHandle, Error>;
    fn CreateObjectCollection(
        &self,
        length: u32,
        items: OutRef<'_, IUnknown>,
        objectcollection: OutRef<'_, ICoreWebView2ObjectCollection>,
    ) -> Result<(), Error>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§