#[repr(C)]pub struct IPipeByteVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IPipeByte, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IPipeByte) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IPipeByte) -> ULONG>,
pub Pull: Option<unsafe extern "C" fn(This: *mut IPipeByte, buf: *mut BYTE, cRequest: ULONG, pcReturned: *mut ULONG) -> HRESULT>,
pub Push: Option<unsafe extern "C" fn(This: *mut IPipeByte, buf: *mut BYTE, cSent: ULONG) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IPipeByte, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IPipeByte) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IPipeByte) -> ULONG>
§Pull: Option<unsafe extern "C" fn(This: *mut IPipeByte, buf: *mut BYTE, cRequest: ULONG, pcReturned: *mut ULONG) -> HRESULT>
§Push: Option<unsafe extern "C" fn(This: *mut IPipeByte, buf: *mut BYTE, cSent: ULONG) -> HRESULT>
Trait Implementations§
Source§impl Clone for IPipeByteVtbl
impl Clone for IPipeByteVtbl
Source§fn clone(&self) -> IPipeByteVtbl
fn clone(&self) -> IPipeByteVtbl
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 IPipeByteVtbl
impl Debug for IPipeByteVtbl
Source§impl Ord for IPipeByteVtbl
impl Ord for IPipeByteVtbl
Source§fn cmp(&self, other: &IPipeByteVtbl) -> Ordering
fn cmp(&self, other: &IPipeByteVtbl) -> 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 IPipeByteVtbl
impl PartialEq for IPipeByteVtbl
Source§impl PartialOrd for IPipeByteVtbl
impl PartialOrd for IPipeByteVtbl
impl Copy for IPipeByteVtbl
impl Eq for IPipeByteVtbl
impl StructuralPartialEq for IPipeByteVtbl
Auto Trait Implementations§
impl Freeze for IPipeByteVtbl
impl RefUnwindSafe for IPipeByteVtbl
impl Send for IPipeByteVtbl
impl Sync for IPipeByteVtbl
impl Unpin for IPipeByteVtbl
impl UnwindSafe for IPipeByteVtbl
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