Trait ITranscodeImage_Impl
pub trait ITranscodeImage_Impl: IUnknownImpl {
// Required method
fn TranscodeImage(
&self,
pshellitem: Ref<'_, IShellItem>,
uimaxwidth: u32,
uimaxheight: u32,
flags: u32,
pvimage: Ref<'_, IStream>,
puiwidth: *mut u32,
puiheight: *mut u32,
) -> Result<()>;
}
Required Methods§
fn TranscodeImage( &self, pshellitem: Ref<'_, IShellItem>, uimaxwidth: u32, uimaxheight: u32, flags: u32, pvimage: Ref<'_, IStream>, puiwidth: *mut u32, puiheight: *mut u32, ) -> Result<()>
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.