Struct IStreamAsync_Vtbl
#[repr(C)]pub struct IStreamAsync_Vtbl {
pub base__: IStream_Vtbl,
pub ReadAsync: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: u32, _: *mut u32, _: *const OVERLAPPED) -> HRESULT,
pub WriteAsync: unsafe extern "system" fn(_: *mut c_void, _: *const c_void, _: u32, _: *mut u32, _: *const OVERLAPPED) -> HRESULT,
pub OverlappedResult: unsafe extern "system" fn(_: *mut c_void, _: *const OVERLAPPED, _: *mut u32, _: BOOL) -> HRESULT,
pub CancelIo: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
}
Fields§
§base__: IStream_Vtbl
§ReadAsync: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: u32, _: *mut u32, _: *const OVERLAPPED) -> HRESULT
§WriteAsync: unsafe extern "system" fn(_: *mut c_void, _: *const c_void, _: u32, _: *mut u32, _: *const OVERLAPPED) -> HRESULT
§OverlappedResult: unsafe extern "system" fn(_: *mut c_void, _: *const OVERLAPPED, _: *mut u32, _: BOOL) -> HRESULT
§CancelIo: unsafe extern "system" fn(_: *mut c_void) -> HRESULT
Implementations§
§impl IStreamAsync_Vtbl
impl IStreamAsync_Vtbl
pub const fn new<Identity: IStreamAsync_Impl, const OFFSET: isize>() -> Self
pub fn matches(iid: &GUID) -> bool
Auto Trait Implementations§
impl Freeze for IStreamAsync_Vtbl
impl RefUnwindSafe for IStreamAsync_Vtbl
impl Send for IStreamAsync_Vtbl
impl Sync for IStreamAsync_Vtbl
impl Unpin for IStreamAsync_Vtbl
impl UnwindSafe for IStreamAsync_Vtbl
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