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§

source

fn AdditionalBrowserArguments(&self, value: *mut PWSTR) -> Result<()>

source

fn SetAdditionalBrowserArguments(&self, value: &PCWSTR) -> Result<()>

source

fn Language(&self, value: *mut PWSTR) -> Result<()>

source

fn SetLanguage(&self, value: &PCWSTR) -> Result<()>

source

fn TargetCompatibleBrowserVersion(&self, value: *mut PWSTR) -> Result<()>

source

fn SetTargetCompatibleBrowserVersion(&self, value: &PCWSTR) -> Result<()>

source

fn AllowSingleSignOnUsingOSPrimaryAccount(&self, allow: *mut BOOL) -> Result<()>

source

fn SetAllowSingleSignOnUsingOSPrimaryAccount(&self, allow: BOOL) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§