#[repr(C)]pub struct PRINTDLGEXW {Show 21 fields
pub lStructSize: u32,
pub hwndOwner: HWND,
pub hDevMode: isize,
pub hDevNames: isize,
pub hDC: HDC,
pub Flags: PRINTDLGEX_FLAGS,
pub Flags2: u32,
pub ExclusionFlags: u32,
pub nPageRanges: u32,
pub nMaxPageRanges: u32,
pub lpPageRanges: *mut PRINTPAGERANGE,
pub nMinPage: u32,
pub nMaxPage: u32,
pub nCopies: u32,
pub hInstance: HINSTANCE,
pub lpPrintTemplateName: PWSTR,
pub lpCallback: Option<IUnknown>,
pub nPropertyPages: u32,
pub lphPropertyPages: *mut HPROPSHEETPAGE,
pub nStartPage: u32,
pub dwResultAction: u32,
}
Fields§
§lStructSize: u32
§hwndOwner: HWND
§hDevMode: isize
§hDevNames: isize
§hDC: HDC
§Flags: PRINTDLGEX_FLAGS
§Flags2: u32
§ExclusionFlags: u32
§nPageRanges: u32
§nMaxPageRanges: u32
§lpPageRanges: *mut PRINTPAGERANGE
§nMinPage: u32
§nMaxPage: u32
§nCopies: u32
§hInstance: HINSTANCE
§lpPrintTemplateName: PWSTR
§lpCallback: Option<IUnknown>
§nPropertyPages: u32
§lphPropertyPages: *mut HPROPSHEETPAGE
§nStartPage: u32
§dwResultAction: u32
Trait Implementations§
Source§impl Abi for PRINTDLGEXW
impl Abi for PRINTDLGEXW
type DefaultType = PRINTDLGEXW
Source§fn ok(value: &Self::DefaultType) -> Result<Self, Error>
fn ok(value: &Self::DefaultType) -> Result<Self, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for PRINTDLGEXW
impl Clone for PRINTDLGEXW
Source§fn clone(&self) -> PRINTDLGEXW
fn clone(&self) -> PRINTDLGEXW
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 moreSource§impl Debug for PRINTDLGEXW
impl Debug for PRINTDLGEXW
Source§impl Default for PRINTDLGEXW
impl Default for PRINTDLGEXW
Source§impl PartialEq for PRINTDLGEXW
impl PartialEq for PRINTDLGEXW
impl Eq for PRINTDLGEXW
Auto Trait Implementations§
impl Freeze for PRINTDLGEXW
impl RefUnwindSafe for PRINTDLGEXW
impl !Send for PRINTDLGEXW
impl !Sync for PRINTDLGEXW
impl Unpin for PRINTDLGEXW
impl UnwindSafe for PRINTDLGEXW
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