pub trait shell_IFileSaveDialog: shell_IFileDialog {
// Provided method
fn SetSaveAsItem(&self, psi: &impl shell_IShellItem) -> HrResult<()> { ... }
}
Available on crate features
kernel
and shell
only.Expand description
This trait is enabled with the shell
feature, and provides methods for
IFileSaveDialog
.
Prefer importing this trait through the prelude:
use winsafe::prelude::*;
Provided Methods§
Sourcefn SetSaveAsItem(&self, psi: &impl shell_IShellItem) -> HrResult<()>
fn SetSaveAsItem(&self, psi: &impl shell_IShellItem) -> HrResult<()>
IFileSaveDialog::SetSaveAsItem
method.
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.