#[repr(C)]
pub struct IChannelHookVtbl {
    pub parent: IUnknownVtbl,
    pub ClientGetSize: unsafe extern "system" fn(This: *mut IChannelHook, uExtent: REFGUID, riid: REFIID, pDataSize: *mut ULONG),
    pub ClientFillBuffer: unsafe extern "system" fn(This: *mut IChannelHook, uExtent: REFGUID, riid: REFIID, pDataSize: *mut ULONG, pDataBuffer: *mut c_void),
    pub ClientNotify: unsafe extern "system" fn(This: *mut IChannelHook, uExtent: REFGUID, riid: REFIID, cbDataSize: ULONG, pDataBuffer: *mut c_void, lDataRep: DWORD, hrFault: HRESULT),
    pub ServerNotify: unsafe extern "system" fn(This: *mut IChannelHook, uExtent: REFGUID, riid: REFIID, cbDataSize: ULONG, pDataBuffer: *mut c_void, lDataRep: DWORD),
    pub ServerGetSize: unsafe extern "system" fn(This: *mut IChannelHook, uExtent: REFGUID, riid: REFIID, hrFault: HRESULT, pDataSize: *mut ULONG),
    pub ServerFillBuffer: unsafe extern "system" fn(This: *mut IChannelHook, uExtent: REFGUID, riid: REFIID, pDataSize: *mut ULONG, pDataBuffer: *mut c_void, hrFault: HRESULT),
}
impl<T> Any for T where
    T: 'static + ?Sized, 
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
    U: From<T>, 
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.