Trait webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2EnvironmentOptions_Impl
source · 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<()>;
}