#[repr(C)]pub struct AsyncIPipeLongVtbl {
pub QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong) -> ULONG>,
pub Release: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong) -> ULONG>,
pub Begin_Pull: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong, cRequest: ULONG) -> HRESULT>,
pub Finish_Pull: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong, buf: *mut LONG, pcReturned: *mut ULONG) -> HRESULT>,
pub Begin_Push: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong, buf: *mut LONG, cSent: ULONG) -> HRESULT>,
pub Finish_Push: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong) -> HRESULT>,
}Fields§
§QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>§AddRef: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong) -> ULONG>§Release: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong) -> ULONG>§Begin_Pull: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong, cRequest: ULONG) -> HRESULT>§Finish_Pull: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong, buf: *mut LONG, pcReturned: *mut ULONG) -> HRESULT>§Begin_Push: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong, buf: *mut LONG, cSent: ULONG) -> HRESULT>§Finish_Push: Option<unsafe extern "stdcall" fn(This: *mut AsyncIPipeLong) -> HRESULT>Trait Implementations§
Source§impl Clone for AsyncIPipeLongVtbl
impl Clone for AsyncIPipeLongVtbl
Source§fn clone(&self) -> AsyncIPipeLongVtbl
fn clone(&self) -> AsyncIPipeLongVtbl
Returns a duplicate 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 moreimpl Copy for AsyncIPipeLongVtbl
Auto Trait Implementations§
impl Freeze for AsyncIPipeLongVtbl
impl RefUnwindSafe for AsyncIPipeLongVtbl
impl Send for AsyncIPipeLongVtbl
impl Sync for AsyncIPipeLongVtbl
impl Unpin for AsyncIPipeLongVtbl
impl UnwindSafe for AsyncIPipeLongVtbl
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