pub struct OwnedHandle { /* private fields */ }
🔬 This is a nightly-only experimental API. (io_safety #87074)
This is supported on Windows only.
Expand description

An owned handle.

This closes the handle on drop.

Note that it may have the value INVALID_HANDLE_VALUE (-1), which is sometimes a valid handle value. See here for the full story.

And, it may have the value NULL (0), which can occur when consoles are detached from processes, or when windows_subsystem is used.

OwnedHandle uses CloseHandle to close its handle on drop. As such, it must not be used with handles to open registry keys which need to be closed with RegCloseKey instead.

Implementations

🔬 This is a nightly-only experimental API. (io_safety #87074)

Creates a new OwnedHandle instance that shares the same underlying file handle as the existing OwnedHandle instance.

Trait Implementations

🔬 This is a nightly-only experimental API. (io_safety #87074)

Borrows the handle. Read more

Extracts the raw handle, without taking any ownership.

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Constructs a new instance of Self from the given raw handle.

Safety

The resource pointed to by handle must be open and suitable for assuming ownership. The resource must not require any cleanup other than CloseHandle.

In particular, it must not be used with handles to open registry keys which need to be closed with RegCloseKey instead.

Note that it may have the value INVALID_HANDLE_VALUE (-1), which is sometimes a valid handle value. See here for the full story.

Consumes this object, returning the raw underlying handle. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.