Trait webview2_com_sys::Microsoft::Web::WebView2::Win32::ICoreWebView2Profile_Impl
source · pub trait ICoreWebView2Profile_Impl: Sized {
// Required methods
fn ProfileName(&self, value: *mut PWSTR) -> Result<()>;
fn IsInPrivateModeEnabled(&self, value: *mut BOOL) -> Result<()>;
fn ProfilePath(&self, value: *mut PWSTR) -> Result<()>;
fn DefaultDownloadFolderPath(&self, value: *mut PWSTR) -> Result<()>;
fn SetDefaultDownloadFolderPath(&self, value: &PCWSTR) -> Result<()>;
fn PreferredColorScheme(
&self,
value: *mut COREWEBVIEW2_PREFERRED_COLOR_SCHEME
) -> Result<()>;
fn SetPreferredColorScheme(
&self,
value: COREWEBVIEW2_PREFERRED_COLOR_SCHEME
) -> Result<()>;
}