Trait IPrintDialogServices_Impl
pub trait IPrintDialogServices_Impl: IUnknownImpl {
// Required methods
fn GetCurrentDevMode(
&self,
pdevmode: *mut DEVMODEA,
pcbsize: *mut u32,
) -> Result<()>;
fn GetCurrentPrinterName(
&self,
pprintername: PWSTR,
pcchsize: *mut u32,
) -> Result<()>;
fn GetCurrentPortName(
&self,
pportname: PWSTR,
pcchsize: *mut u32,
) -> Result<()>;
}
Required Methods§
fn GetCurrentDevMode( &self, pdevmode: *mut DEVMODEA, pcbsize: *mut u32, ) -> Result<()>
fn GetCurrentPrinterName( &self, pprintername: PWSTR, pcchsize: *mut u32, ) -> Result<()>
fn GetCurrentPortName(&self, pportname: PWSTR, pcchsize: *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.