Struct windows::Win32::Graphics::Printing::IPrintOemUI
pub struct IPrintOemUI(/* private fields */);
Implementations§
§impl IPrintOemUI
impl IPrintOemUI
pub unsafe fn PublishDriverInterface<P0>(&self, piunknown: P0) -> Result<()>where
P0: Param<IUnknown>,
pub unsafe fn CommonUIProp( &self, dwmode: u32, poemcuipparam: *const OEMCUIPPARAM, ) -> Result<()>
pub unsafe fn DocumentPropertySheets<P0>(
&self,
ppsuiinfo: *mut PROPSHEETUI_INFO,
lparam: P0,
) -> Result<()>where
P0: Param<LPARAM>,
pub unsafe fn DevicePropertySheets<P0>(
&self,
ppsuiinfo: *const PROPSHEETUI_INFO,
lparam: P0,
) -> Result<()>where
P0: Param<LPARAM>,
pub unsafe fn DevQueryPrintEx( &self, poemuiobj: *const OEMUIOBJ, pdqpinfo: *const DEVQUERYPRINT_INFO, ppublicdm: *const DEVMODEA, poemdm: *const c_void, ) -> Result<()>
pub unsafe fn DeviceCapabilitiesA<P0, P1>(
&self,
poemuiobj: *mut OEMUIOBJ,
hprinter: P0,
pdevicename: P1,
wcapability: u16,
poutput: *mut c_void,
ppublicdm: *const DEVMODEA,
poemdm: *const c_void,
dwold: u32,
dwresult: *mut u32,
) -> Result<()>where
P0: Param<HANDLE>,
P1: Param<PCWSTR>,
pub unsafe fn UpgradePrinter( &self, dwlevel: u32, pdriverupgradeinfo: *const u8, ) -> Result<()>
pub unsafe fn PrinterEvent<P0, P1>(
&self,
pprintername: P0,
idriverevent: i32,
dwflags: u32,
lparam: P1,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<LPARAM>,
pub unsafe fn DriverEvent<P0>(
&self,
dwdriverevent: u32,
dwlevel: u32,
pdriverinfo: *const u8,
lparam: P0,
) -> Result<()>where
P0: Param<LPARAM>,
pub unsafe fn QueryColorProfile<P0>(
&self,
hprinter: P0,
poemuiobj: *const OEMUIOBJ,
ppublicdm: *const DEVMODEA,
poemdm: *const c_void,
ulquerymode: u32,
pvprofiledata: *mut c_void,
pcbprofiledata: *mut u32,
pflprofiledata: *mut u32,
) -> Result<()>where
P0: Param<HANDLE>,
pub unsafe fn FontInstallerDlgProc<P0, P1, P2>( &self, hwnd: P0, usmsg: u32, wparam: P1, lparam: P2, ) -> Result<()>
pub unsafe fn UpdateExternalFonts<P0, P1, P2>( &self, hprinter: P0, hheap: P1, pwstrcartridges: P2, ) -> Result<()>
Methods from Deref<Target = IPrintOemCommon>§
pub unsafe fn GetInfo( &self, dwmode: u32, pbuffer: *mut c_void, cbsize: u32, pcbneeded: *mut u32, ) -> Result<()>
pub unsafe fn DevMode( &self, dwmode: u32, poemdmparam: *mut OEMDMPARAM, ) -> Result<()>
Trait Implementations§
§impl CanInto<IPrintOemCommon> for IPrintOemUI
impl CanInto<IPrintOemCommon> for IPrintOemUI
§impl CanInto<IPrintOemUI> for IPrintOemUI2
impl CanInto<IPrintOemUI> for IPrintOemUI2
§impl CanInto<IUnknown> for IPrintOemUI
impl CanInto<IUnknown> for IPrintOemUI
§impl Clone for IPrintOemUI
impl Clone for IPrintOemUI
§fn clone(&self) -> IPrintOemUI
fn clone(&self) -> IPrintOemUI
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for IPrintOemUI
impl Debug for IPrintOemUI
§impl Deref for IPrintOemUI
impl Deref for IPrintOemUI
§impl From<&IPrintOemUI> for &IPrintOemCommon
impl From<&IPrintOemUI> for &IPrintOemCommon
§fn from(value: &IPrintOemUI) -> Self
fn from(value: &IPrintOemUI) -> Self
Converts to this type from the input type.
§impl From<&IPrintOemUI> for &IUnknown
impl From<&IPrintOemUI> for &IUnknown
§fn from(value: &IPrintOemUI) -> Self
fn from(value: &IPrintOemUI) -> Self
Converts to this type from the input type.
§impl From<&IPrintOemUI2> for &IPrintOemUI
impl From<&IPrintOemUI2> for &IPrintOemUI
§fn from(value: &IPrintOemUI2) -> Self
fn from(value: &IPrintOemUI2) -> Self
Converts to this type from the input type.
§impl From<IPrintOemUI> for IPrintOemCommon
impl From<IPrintOemUI> for IPrintOemCommon
§fn from(value: IPrintOemUI) -> Self
fn from(value: IPrintOemUI) -> Self
Converts to this type from the input type.
§impl From<IPrintOemUI> for IUnknown
impl From<IPrintOemUI> for IUnknown
§fn from(value: IPrintOemUI) -> Self
fn from(value: IPrintOemUI) -> Self
Converts to this type from the input type.
§impl From<IPrintOemUI2> for IPrintOemUI
impl From<IPrintOemUI2> for IPrintOemUI
§fn from(value: IPrintOemUI2) -> Self
fn from(value: IPrintOemUI2) -> Self
Converts to this type from the input type.
§impl Interface for IPrintOemUI
impl Interface for IPrintOemUI
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IPrintOemUI
impl PartialEq for IPrintOemUI
§fn eq(&self, other: &IPrintOemUI) -> bool
fn eq(&self, other: &IPrintOemUI) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IPrintOemUI
impl StructuralPartialEq for IPrintOemUI
Auto Trait Implementations§
impl Freeze for IPrintOemUI
impl RefUnwindSafe for IPrintOemUI
impl !Send for IPrintOemUI
impl !Sync for IPrintOemUI
impl Unpin for IPrintOemUI
impl UnwindSafe for IPrintOemUI
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)