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

Trait ICoreWebView2Profile_Impl

Source
pub trait ICoreWebView2Profile_Impl: IUnknownImpl {
    // Required methods
    fn ProfileName(&self, value: *mut PWSTR) -> Result<(), Error>;
    fn IsInPrivateModeEnabled(&self, value: *mut BOOL) -> Result<(), Error>;
    fn ProfilePath(&self, value: *mut PWSTR) -> Result<(), Error>;
    fn DefaultDownloadFolderPath(&self, value: *mut PWSTR) -> Result<(), Error>;
    fn SetDefaultDownloadFolderPath(&self, value: &PCWSTR) -> Result<(), Error>;
    fn PreferredColorScheme(
        &self,
        value: *mut COREWEBVIEW2_PREFERRED_COLOR_SCHEME,
    ) -> Result<(), Error>;
    fn SetPreferredColorScheme(
        &self,
        value: COREWEBVIEW2_PREFERRED_COLOR_SCHEME,
    ) -> 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§