#[repr(C)]pub struct IEnumSTATSTGVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG) -> ULONG>,
pub Next: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG, celt: ULONG, rgelt: *mut STATSTG, pceltFetched: *mut ULONG) -> HRESULT>,
pub Skip: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG, celt: ULONG) -> HRESULT>,
pub Reset: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG) -> HRESULT>,
pub Clone: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG, ppenum: *mut *mut IEnumSTATSTG) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG) -> ULONG>
§Next: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG, celt: ULONG, rgelt: *mut STATSTG, pceltFetched: *mut ULONG) -> HRESULT>
§Skip: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG, celt: ULONG) -> HRESULT>
§Reset: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG) -> HRESULT>
§Clone: Option<unsafe extern "C" fn(This: *mut IEnumSTATSTG, ppenum: *mut *mut IEnumSTATSTG) -> HRESULT>
Trait Implementations§
Source§impl Clone for IEnumSTATSTGVtbl
impl Clone for IEnumSTATSTGVtbl
Source§fn clone(&self) -> IEnumSTATSTGVtbl
fn clone(&self) -> IEnumSTATSTGVtbl
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IEnumSTATSTGVtbl
impl Debug for IEnumSTATSTGVtbl
Source§impl Ord for IEnumSTATSTGVtbl
impl Ord for IEnumSTATSTGVtbl
Source§fn cmp(&self, other: &IEnumSTATSTGVtbl) -> Ordering
fn cmp(&self, other: &IEnumSTATSTGVtbl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IEnumSTATSTGVtbl
impl PartialEq for IEnumSTATSTGVtbl
Source§impl PartialOrd for IEnumSTATSTGVtbl
impl PartialOrd for IEnumSTATSTGVtbl
impl Copy for IEnumSTATSTGVtbl
impl Eq for IEnumSTATSTGVtbl
impl StructuralPartialEq for IEnumSTATSTGVtbl
Auto Trait Implementations§
impl Freeze for IEnumSTATSTGVtbl
impl RefUnwindSafe for IEnumSTATSTGVtbl
impl Send for IEnumSTATSTGVtbl
impl Sync for IEnumSTATSTGVtbl
impl Unpin for IEnumSTATSTGVtbl
impl UnwindSafe for IEnumSTATSTGVtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more