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

Required Methods§

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§