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

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§