#[repr(C)]
pub struct IFileDialog_Vtbl {
Show 24 fields pub base__: IModalWindow_Vtbl, pub SetFileTypes: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *const COMDLG_FILTERSPEC) -> HRESULT, pub SetFileTypeIndex: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub GetFileTypeIndex: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub Advise: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut u32) -> HRESULT, pub Unadvise: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub SetOptions: unsafe extern "system" fn(_: *mut c_void, _: FILEOPENDIALOGOPTIONS) -> HRESULT, pub GetOptions: unsafe extern "system" fn(_: *mut c_void, _: *mut FILEOPENDIALOGOPTIONS) -> HRESULT, pub SetDefaultFolder: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub SetFolder: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub GetFolder: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub GetCurrentSelection: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub SetFileName: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub GetFileName: unsafe extern "system" fn(_: *mut c_void, _: *mut PWSTR) -> HRESULT, pub SetTitle: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub SetOkButtonLabel: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub SetFileNameLabel: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub GetResult: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub AddPlace: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: FDAP) -> HRESULT, pub SetDefaultExtension: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub Close: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT, pub SetClientGuid: unsafe extern "system" fn(_: *mut c_void, _: *const GUID) -> HRESULT, pub ClearClientData: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub SetFilter: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT,
}

Fields§

§base__: IModalWindow_Vtbl§SetFileTypes: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *const COMDLG_FILTERSPEC) -> HRESULT§SetFileTypeIndex: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§GetFileTypeIndex: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§Advise: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut u32) -> HRESULT§Unadvise: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§SetOptions: unsafe extern "system" fn(_: *mut c_void, _: FILEOPENDIALOGOPTIONS) -> HRESULT§GetOptions: unsafe extern "system" fn(_: *mut c_void, _: *mut FILEOPENDIALOGOPTIONS) -> HRESULT§SetDefaultFolder: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§SetFolder: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§GetFolder: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§GetCurrentSelection: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§SetFileName: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§GetFileName: unsafe extern "system" fn(_: *mut c_void, _: *mut PWSTR) -> HRESULT§SetTitle: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§SetOkButtonLabel: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§SetFileNameLabel: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§GetResult: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§AddPlace: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: FDAP) -> HRESULT§SetDefaultExtension: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§Close: unsafe extern "system" fn(_: *mut c_void, _: HRESULT) -> HRESULT§SetClientGuid: unsafe extern "system" fn(_: *mut c_void, _: *const GUID) -> HRESULT§ClearClientData: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetFilter: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT

Implementations§

§

impl IFileDialog_Vtbl

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