Skip to main content

ICoreWebView2EnvironmentOptions_Impl

Trait ICoreWebView2EnvironmentOptions_Impl 

Source
pub trait ICoreWebView2EnvironmentOptions_Impl: IUnknownImpl {
    // Required methods
    fn AdditionalBrowserArguments(&self) -> Result<PWSTR>;
    fn SetAdditionalBrowserArguments(&self, value: &PCWSTR) -> Result<()>;
    fn Language(&self) -> Result<PWSTR>;
    fn SetLanguage(&self, value: &PCWSTR) -> Result<()>;
    fn TargetCompatibleBrowserVersion(&self) -> Result<PWSTR>;
    fn SetTargetCompatibleBrowserVersion(&self, value: &PCWSTR) -> Result<()>;
    fn AllowSingleSignOnUsingOSPrimaryAccount(&self) -> Result<BOOL>;
    fn SetAllowSingleSignOnUsingOSPrimaryAccount(
        &self,
        allow: BOOL,
    ) -> Result<()>;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§