#[repr(C)]pub struct Overlapped {
pub base: OVERLAPPED,
pub driver: RawFd,
}
Expand description
The overlapped struct we actually used for IOCP.
Fields§
§base: OVERLAPPED
The base [OVERLAPPED
].
driver: RawFd
The unique ID of created driver.
Trait Implementations§
impl Send for Overlapped
impl Sync for Overlapped
Auto Trait Implementations§
impl Freeze for Overlapped
impl RefUnwindSafe for Overlapped
impl Unpin for Overlapped
impl UnwindSafe for Overlapped
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