pub trait ICoreWebView2Profile_Impl {
    fn ProfileName(&self, value: *mut PWSTR) -> Result<(), Error>;
    fn IsInPrivateModeEnabled(&self, value: *mut BOOL) -> Result<(), Error>;
    fn ProfilePath(&self, value: *mut PWSTR) -> Result<(), Error>;
    fn DefaultDownloadFolderPath(&self, value: *mut PWSTR) -> Result<(), Error>;
    fn SetDefaultDownloadFolderPath(&self, value: &PCWSTR) -> Result<(), Error>;
    fn PreferredColorScheme(
        &self,
        value: *mut COREWEBVIEW2_PREFERRED_COLOR_SCHEME
    ) -> Result<(), Error>; fn SetPreferredColorScheme(
        &self,
        value: COREWEBVIEW2_PREFERRED_COLOR_SCHEME
    ) -> Result<(), Error>; }

Required Methods

Implementors