pub struct IPrintCoreHelper(/* private fields */);

Implementations§

§

impl IPrintCoreHelper

pub unsafe fn GetOption<P0>( &self, pdevmode: Option<*const DEVMODEA>, cbsize: u32, pszfeaturerequested: P0 ) -> Result<PCSTR>
where P0: IntoParam<PCSTR>,

pub unsafe fn SetOptions<P0>( &self, pdevmode: *mut DEVMODEA, cbsize: u32, bresolveconflicts: P0, pfopairs: *const PRINT_FEATURE_OPTION, cpairs: u32, pcpairswritten: *mut u32, pdwresult: *mut u32 ) -> Result<()>
where P0: IntoParam<BOOL>,

pub unsafe fn EnumConstrainedOptions<P0>( &self, pdevmode: *const DEVMODEA, cbsize: u32, pszfeaturekeyword: P0, pconstrainedoptionlist: *const *const *const PCSTR, pdwnumoptions: *mut u32 ) -> Result<()>
where P0: IntoParam<PCSTR>,

pub unsafe fn WhyConstrained<P0, P1>( &self, pdevmode: Option<*const DEVMODEA>, cbsize: u32, pszfeaturekeyword: P0, pszoptionkeyword: P1, ppfoconstraints: *mut *mut PRINT_FEATURE_OPTION, pdwnumoptions: *mut u32 ) -> Result<()>
where P0: IntoParam<PCSTR>, P1: IntoParam<PCSTR>,

pub unsafe fn EnumFeatures( &self, pfeaturelist: *mut *mut *mut PCSTR, pdwnumfeatures: *mut u32 ) -> Result<()>

pub unsafe fn EnumOptions<P0>( &self, pszfeaturekeyword: P0, poptionlist: *mut *mut *mut PCSTR, pdwnumoptions: *mut u32 ) -> Result<()>
where P0: IntoParam<PCSTR>,

pub unsafe fn GetFontSubstitution<P0>( &self, psztruetypefontname: P0, ppszdevfontname: *const PCWSTR ) -> Result<()>
where P0: IntoParam<PCWSTR>,

pub unsafe fn SetFontSubstitution<P0, P1>( &self, psztruetypefontname: P0, pszdevfontname: P1 ) -> Result<()>
where P0: IntoParam<PCWSTR>, P1: IntoParam<PCWSTR>,

pub unsafe fn CreateInstanceOfMSXMLObject<P0>( &self, rclsid: *const GUID, punkouter: P0, dwclscontext: u32, riid: *const GUID, ppv: *mut *mut c_void ) -> Result<()>
where P0: IntoParam<IUnknown>,

Trait Implementations§

§

impl Clone for IPrintCoreHelper

§

fn clone(&self) -> IPrintCoreHelper

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for IPrintCoreHelper

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl From<&IPrintCoreHelper> for &IUnknown

§

fn from(value: &IPrintCoreHelper) -> Self

Converts to this type from the input type.
§

impl From<&IPrintCoreHelperPS> for &IPrintCoreHelper

§

fn from(value: &IPrintCoreHelperPS) -> Self

Converts to this type from the input type.
§

impl From<&IPrintCoreHelperUni> for &IPrintCoreHelper

§

fn from(value: &IPrintCoreHelperUni) -> Self

Converts to this type from the input type.
§

impl From<&IPrintCoreHelperUni2> for &IPrintCoreHelper

§

fn from(value: &IPrintCoreHelperUni2) -> Self

Converts to this type from the input type.
§

impl From<IPrintCoreHelper> for IUnknown

§

fn from(value: IPrintCoreHelper) -> Self

Converts to this type from the input type.
§

impl From<IPrintCoreHelperPS> for IPrintCoreHelper

§

fn from(value: IPrintCoreHelperPS) -> Self

Converts to this type from the input type.
§

impl From<IPrintCoreHelperUni> for IPrintCoreHelper

§

fn from(value: IPrintCoreHelperUni) -> Self

Converts to this type from the input type.
§

impl From<IPrintCoreHelperUni2> for IPrintCoreHelper

§

fn from(value: IPrintCoreHelperUni2) -> Self

Converts to this type from the input type.
§

impl Interface for IPrintCoreHelper

§

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

Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§

unsafe fn from_raw(raw: *mut c_void) -> Self

Creates an Interface by taking ownership of the raw COM interface pointer. Read more
§

unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>

Creates an Interface that is valid so long as the raw COM interface pointer is valid. Read more
§

fn cast<T>(&self) -> Result<T, Error>
where T: Interface,

Attempts to cast the current interface to another interface using QueryInterface. Read more
§

fn downgrade(&self) -> Result<Weak<Self>, Error>

Attempts to create a Weak reference to this object.
§

unsafe fn query(&self, iid: *const GUID, interface: *mut *mut c_void) -> HRESULT

Call QueryInterface on this interface Read more
§

impl PartialEq for IPrintCoreHelper

§

fn eq(&self, other: &IPrintCoreHelper) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for IPrintCoreHelper

§

impl StructuralPartialEq for IPrintCoreHelper

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.