Trait IPrintDocumentPackageTarget_Impl
pub trait IPrintDocumentPackageTarget_Impl: IUnknownImpl {
// Required methods
fn GetPackageTargetTypes(
&self,
targetcount: *mut u32,
targettypes: *mut *mut GUID,
) -> Result<()>;
fn GetPackageTarget(
&self,
guidtargettype: *const GUID,
riid: *const GUID,
ppvtarget: *mut *mut c_void,
) -> Result<()>;
fn Cancel(&self) -> Result<()>;
}
Required Methods§
fn GetPackageTargetTypes( &self, targetcount: *mut u32, targettypes: *mut *mut GUID, ) -> Result<()>
fn GetPackageTarget( &self, guidtargettype: *const GUID, riid: *const GUID, ppvtarget: *mut *mut c_void, ) -> Result<()>
fn Cancel(&self) -> 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.