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

Trait ICoreWebView2EnvironmentOptions_Impl

Source
pub trait ICoreWebView2EnvironmentOptions_Impl: IUnknownImpl {
    // Required methods
    fn AdditionalBrowserArguments(&self, value: *mut PWSTR) -> Result<(), Error>;
    fn SetAdditionalBrowserArguments(&self, value: &PCWSTR) -> Result<(), Error>;
    fn Language(&self, value: *mut PWSTR) -> Result<(), Error>;
    fn SetLanguage(&self, value: &PCWSTR) -> Result<(), Error>;
    fn TargetCompatibleBrowserVersion(
        &self,
        value: *mut PWSTR,
    ) -> Result<(), Error>;
    fn SetTargetCompatibleBrowserVersion(
        &self,
        value: &PCWSTR,
    ) -> Result<(), Error>;
    fn AllowSingleSignOnUsingOSPrimaryAccount(
        &self,
        allow: *mut BOOL,
    ) -> Result<(), Error>;
    fn SetAllowSingleSignOnUsingOSPrimaryAccount(
        &self,
        allow: BOOL,
    ) -> 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§