Struct windows::Win32::Storage::Xps::IXpsOMObjectFactory1_Vtbl

#[repr(C)]
pub struct IXpsOMObjectFactory1_Vtbl {
Show 13 fields pub base__: IXpsOMObjectFactory_Vtbl, pub GetDocumentTypeFromFile: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut XPS_DOCUMENT_TYPE) -> HRESULT, pub GetDocumentTypeFromStream: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut XPS_DOCUMENT_TYPE) -> HRESULT, pub ConvertHDPhotoToJpegXR: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub ConvertJpegXRToHDPhoto: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub CreatePackageWriterOnFile1: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *const SECURITY_ATTRIBUTES, _: u32, _: BOOL, _: XPS_INTERLEAVING, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: XPS_DOCUMENT_TYPE, _: *mut *mut c_void) -> HRESULT, pub CreatePackageWriterOnStream1: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: BOOL, _: XPS_INTERLEAVING, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: XPS_DOCUMENT_TYPE, _: *mut *mut c_void) -> HRESULT, pub CreatePackage1: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub CreatePackageFromStream1: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: BOOL, _: *mut *mut c_void) -> HRESULT, pub CreatePackageFromFile1: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: BOOL, _: *mut *mut c_void) -> HRESULT, pub CreatePage1: unsafe extern "system" fn(_: *mut c_void, _: *const XPS_SIZE, _: PCWSTR, _: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub CreatePageFromStream1: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: BOOL, _: *mut *mut c_void) -> HRESULT, pub CreateRemoteDictionaryResourceFromStream1: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut *mut c_void) -> HRESULT,
}

Fields§

§base__: IXpsOMObjectFactory_Vtbl§GetDocumentTypeFromFile: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut XPS_DOCUMENT_TYPE) -> HRESULT§GetDocumentTypeFromStream: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut XPS_DOCUMENT_TYPE) -> HRESULT§ConvertHDPhotoToJpegXR: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§ConvertJpegXRToHDPhoto: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§CreatePackageWriterOnFile1: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *const SECURITY_ATTRIBUTES, _: u32, _: BOOL, _: XPS_INTERLEAVING, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: XPS_DOCUMENT_TYPE, _: *mut *mut c_void) -> HRESULT§CreatePackageWriterOnStream1: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: BOOL, _: XPS_INTERLEAVING, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: XPS_DOCUMENT_TYPE, _: *mut *mut c_void) -> HRESULT§CreatePackage1: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§CreatePackageFromStream1: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: BOOL, _: *mut *mut c_void) -> HRESULT§CreatePackageFromFile1: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: BOOL, _: *mut *mut c_void) -> HRESULT§CreatePage1: unsafe extern "system" fn(_: *mut c_void, _: *const XPS_SIZE, _: PCWSTR, _: *mut c_void, _: *mut *mut c_void) -> HRESULT§CreatePageFromStream1: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: BOOL, _: *mut *mut c_void) -> HRESULT§CreateRemoteDictionaryResourceFromStream1: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut c_void, _: *mut *mut c_void) -> HRESULT

Implementations§

§

impl IXpsOMObjectFactory1_Vtbl

pub const fn new<Identity, const OFFSET: isize>() -> IXpsOMObjectFactory1_Vtbl
where Identity: IXpsOMObjectFactory1_Impl + IUnknownImpl,

pub fn matches(iid: &GUID) -> bool

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, 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.