[][src]Struct winapi::um::shobjidl_core::IShellItemVtbl

#[repr(C)]pub struct IShellItemVtbl {
    pub parent: IUnknownVtbl,
    pub BindToHandler: unsafe extern "system" fn(This: *mut IShellItem, pbc: *mut IBindCtx, bhid: REFGUID, riid: REFIID, ppv: *mut *mut c_void) -> HRESULT,
    pub GetParent: unsafe extern "system" fn(This: *mut IShellItem, ppsi: *mut *mut IShellItem) -> HRESULT,
    pub GetDisplayName: unsafe extern "system" fn(This: *mut IShellItem, sigdnName: SIGDN, ppszName: *mut LPWSTR) -> HRESULT,
    pub GetAttributes: unsafe extern "system" fn(This: *mut IShellItem, sfgaoMask: SFGAOF, psfgaoAttribs: *mut SFGAOF) -> HRESULT,
    pub Compare: unsafe extern "system" fn(This: *mut IShellItem, psi: *mut IShellItem, hint: SICHINTF, piOrder: *mut c_int) -> HRESULT,
}

Fields

parent: IUnknownVtblBindToHandler: unsafe extern "system" fn(This: *mut IShellItem, pbc: *mut IBindCtx, bhid: REFGUID, riid: REFIID, ppv: *mut *mut c_void) -> HRESULTGetParent: unsafe extern "system" fn(This: *mut IShellItem, ppsi: *mut *mut IShellItem) -> HRESULTGetDisplayName: unsafe extern "system" fn(This: *mut IShellItem, sigdnName: SIGDN, ppszName: *mut LPWSTR) -> HRESULTGetAttributes: unsafe extern "system" fn(This: *mut IShellItem, sfgaoMask: SFGAOF, psfgaoAttribs: *mut SFGAOF) -> HRESULTCompare: unsafe extern "system" fn(This: *mut IShellItem, psi: *mut IShellItem, hint: SICHINTF, piOrder: *mut c_int) -> HRESULT

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.