pub trait IFileDialogEvents_Impl: IUnknownImpl {
// Required methods
fn OnFileOk(&self, pfd: Ref<'_, IFileDialog>) -> Result<(), Error>;
fn OnFolderChanging(
&self,
pfd: Ref<'_, IFileDialog>,
psifolder: Ref<'_, IShellItem>,
) -> Result<(), Error>;
fn OnFolderChange(&self, pfd: Ref<'_, IFileDialog>) -> Result<(), Error>;
fn OnSelectionChange(&self, pfd: Ref<'_, IFileDialog>) -> Result<(), Error>;
fn OnShareViolation(
&self,
pfd: Ref<'_, IFileDialog>,
psi: Ref<'_, IShellItem>,
) -> Result<FDE_SHAREVIOLATION_RESPONSE, Error>;
fn OnTypeChange(&self, pfd: Ref<'_, IFileDialog>) -> Result<(), Error>;
fn OnOverwrite(
&self,
pfd: Ref<'_, IFileDialog>,
psi: Ref<'_, IShellItem>,
) -> Result<FDE_OVERWRITE_RESPONSE, Error>;
}Required Methods§
fn OnFileOk(&self, pfd: Ref<'_, IFileDialog>) -> Result<(), Error>
fn OnFolderChanging( &self, pfd: Ref<'_, IFileDialog>, psifolder: Ref<'_, IShellItem>, ) -> Result<(), Error>
fn OnFolderChange(&self, pfd: Ref<'_, IFileDialog>) -> Result<(), Error>
fn OnSelectionChange(&self, pfd: Ref<'_, IFileDialog>) -> Result<(), Error>
fn OnTypeChange(&self, pfd: Ref<'_, IFileDialog>) -> Result<(), Error>
fn OnOverwrite( &self, pfd: Ref<'_, IFileDialog>, psi: Ref<'_, IShellItem>, ) -> Result<FDE_OVERWRITE_RESPONSE, Error>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".