pub trait ICoreWebView2ControllerOptions_Impl: IUnknownImpl {
// Required methods
fn ProfileName(&self) -> Result<PWSTR>;
fn SetProfileName(&self, value: &PCWSTR) -> Result<()>;
fn IsInPrivateModeEnabled(&self) -> Result<BOOL>;
fn SetIsInPrivateModeEnabled(&self, value: BOOL) -> Result<()>;
}Required Methods§
fn ProfileName(&self) -> Result<PWSTR>
fn SetProfileName(&self, value: &PCWSTR) -> Result<()>
fn IsInPrivateModeEnabled(&self) -> Result<BOOL>
fn SetIsInPrivateModeEnabled(&self, value: BOOL) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".