pub trait ICoreWebView2_9_Impl: ICoreWebView2_8_Impl {
// Required methods
fn add_IsDefaultDownloadDialogOpenChanged(
&self,
handler: Ref<'_, ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler>,
token: *mut i64,
) -> Result<(), Error>;
fn remove_IsDefaultDownloadDialogOpenChanged(
&self,
token: i64,
) -> Result<(), Error>;
fn IsDefaultDownloadDialogOpen(&self, value: *mut BOOL) -> Result<(), Error>;
fn OpenDefaultDownloadDialog(&self) -> Result<(), Error>;
fn CloseDefaultDownloadDialog(&self) -> Result<(), Error>;
fn DefaultDownloadDialogCornerAlignment(
&self,
value: *mut COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT,
) -> Result<(), Error>;
fn SetDefaultDownloadDialogCornerAlignment(
&self,
value: COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT,
) -> Result<(), Error>;
fn DefaultDownloadDialogMargin(
&self,
value: *mut POINT,
) -> Result<(), Error>;
fn SetDefaultDownloadDialogMargin(&self, value: &POINT) -> Result<(), Error>;
}
Required Methods§
fn add_IsDefaultDownloadDialogOpenChanged( &self, handler: Ref<'_, ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler>, token: *mut i64, ) -> Result<(), Error>
fn remove_IsDefaultDownloadDialogOpenChanged( &self, token: i64, ) -> Result<(), Error>
fn IsDefaultDownloadDialogOpen(&self, value: *mut BOOL) -> Result<(), Error>
fn OpenDefaultDownloadDialog(&self) -> Result<(), Error>
fn CloseDefaultDownloadDialog(&self) -> Result<(), Error>
fn DefaultDownloadDialogCornerAlignment( &self, value: *mut COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT, ) -> Result<(), Error>
fn SetDefaultDownloadDialogCornerAlignment( &self, value: COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT, ) -> Result<(), Error>
fn DefaultDownloadDialogMargin(&self, value: *mut POINT) -> Result<(), Error>
fn SetDefaultDownloadDialogMargin(&self, value: &POINT) -> 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.