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§
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<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".