#[repr(C)]
pub struct IPhotoAcquireProgressCB_Vtbl {
Show 20 fields pub base__: IUnknown_Vtbl, pub Cancelled: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT, pub StartEnumeration: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub FoundItem: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub EndEnumeration: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT, pub StartTransfer: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub StartItemTransfer: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void) -> HRESULT, pub DirectoryCreated: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub UpdateTransferPercent: unsafe extern "system" fn(_: *mut c_void, _: BOOL, _: u32) -> HRESULT, pub EndItemTransfer: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void, _: HRESULT) -> HRESULT, pub EndTransfer: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT, pub StartDelete: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub StartItemDelete: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void) -> HRESULT, pub UpdateDeletePercent: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub EndItemDelete: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void, _: HRESULT) -> HRESULT, pub EndDelete: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT, pub EndSession: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT, pub GetDeleteAfterAcquire: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT, pub ErrorAdvise: unsafe extern "system" fn(_: *mut c_void, _: HRESULT, _: PCWSTR, _: ERROR_ADVISE_MESSAGE_TYPE, _: *mut ERROR_ADVISE_RESULT) -> HRESULT, pub GetUserInput: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut c_void, _: *mut MaybeUninit<PROPVARIANT>, _: *const MaybeUninit<PROPVARIANT>) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§Cancelled: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT§StartEnumeration: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§FoundItem: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§EndEnumeration: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT§StartTransfer: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§StartItemTransfer: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void) -> HRESULT§DirectoryCreated: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§UpdateTransferPercent: unsafe extern "system" fn(_: *mut c_void, _: BOOL, _: u32) -> HRESULT§EndItemTransfer: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void, _: HRESULT) -> HRESULT§EndTransfer: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT§StartDelete: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§StartItemDelete: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void) -> HRESULT§UpdateDeletePercent: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§EndItemDelete: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut c_void, _: HRESULT) -> HRESULT§EndDelete: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT§EndSession: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT§GetDeleteAfterAcquire: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT§ErrorAdvise: unsafe extern "system" fn(_: *mut c_void, _: HRESULT, _: PCWSTR, _: ERROR_ADVISE_MESSAGE_TYPE, _: *mut ERROR_ADVISE_RESULT) -> HRESULT§GetUserInput: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut c_void, _: *mut MaybeUninit<PROPVARIANT>, _: *const MaybeUninit<PROPVARIANT>) -> HRESULT

Implementations§

§

impl IPhotoAcquireProgressCB_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: IPhotoAcquireProgressCB_Impl, const OFFSET: isize>( ) -> IPhotoAcquireProgressCB_Vtbl

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.