#[repr(C)]
pub struct IPhotoProgressDialog_Vtbl {
Show 19 fields pub base__: IUnknown_Vtbl, pub Create: unsafe extern "system" fn(_: *mut c_void, _: HWND) -> HRESULT, pub GetWindow: unsafe extern "system" fn(_: *mut c_void, _: *mut HWND) -> HRESULT, pub Destroy: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub SetTitle: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub ShowCheckbox: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: BOOL) -> HRESULT, pub SetCheckboxText: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: PCWSTR) -> HRESULT, pub SetCheckboxCheck: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: BOOL) -> HRESULT, pub SetCheckboxTooltip: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: PCWSTR) -> HRESULT, pub IsCheckboxChecked: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: *mut BOOL) -> HRESULT, pub SetCaption: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub SetImage: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_IMAGE_TYPE, _: HICON, _: HBITMAP) -> HRESULT, pub SetPercentComplete: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT, pub SetProgressText: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub SetActionLinkCallback: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub SetActionLinkText: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub ShowActionLink: unsafe extern "system" fn(_: *mut c_void, _: BOOL) -> HRESULT, pub IsCancelled: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> 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§Create: unsafe extern "system" fn(_: *mut c_void, _: HWND) -> HRESULT§GetWindow: unsafe extern "system" fn(_: *mut c_void, _: *mut HWND) -> HRESULT§Destroy: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetTitle: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§ShowCheckbox: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: BOOL) -> HRESULT§SetCheckboxText: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: PCWSTR) -> HRESULT§SetCheckboxCheck: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: BOOL) -> HRESULT§SetCheckboxTooltip: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: PCWSTR) -> HRESULT§IsCheckboxChecked: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_CHECKBOX_ID, _: *mut BOOL) -> HRESULT§SetCaption: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§SetImage: unsafe extern "system" fn(_: *mut c_void, _: PROGRESS_DIALOG_IMAGE_TYPE, _: HICON, _: HBITMAP) -> HRESULT§SetPercentComplete: unsafe extern "system" fn(_: *mut c_void, _: i32) -> HRESULT§SetProgressText: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§SetActionLinkCallback: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§SetActionLinkText: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§ShowActionLink: unsafe extern "system" fn(_: *mut c_void, _: BOOL) -> HRESULT§IsCancelled: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT§GetUserInput: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut c_void, _: *mut MaybeUninit<PROPVARIANT>, _: *const MaybeUninit<PROPVARIANT>) -> HRESULT

Implementations§

§

impl IPhotoProgressDialog_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: IPhotoProgressDialog_Impl, const OFFSET: isize>( ) -> IPhotoProgressDialog_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.