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§

Object Safety§

This trait is not object safe.

Implementors§