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