We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa1be5 commit a8f777bCopy full SHA for a8f777b
src/shims/windows/handle.rs
@@ -3,6 +3,9 @@ use std::mem::variant_count;
3
4
use crate::*;
5
6
+/// A Windows `HANDLE` that represents a resource instead of being null or a pseudohandle.
7
+///
8
+/// This is a seperate type from [`Handle`] to simplify the packing and unpacking code.
9
#[derive(Clone, Copy)]
10
enum RealHandle {
11
Thread(ThreadId),
0 commit comments