Struct winproc::Handle[][src]

pub struct Handle(_);

An owning wrapper over a Windows handle.

Will close the inner handle on drop.

Methods

impl Handle
[src]

Takes ownership of a raw handle.

Duplicates a handle without taking ownership.

Trait Implementations

impl Debug for Handle
[src]

Formats the value using the given formatter. Read more

impl AsRawHandle for Handle
[src]

Extracts the raw handle, without taking any ownership.

impl Deref for Handle
[src]

The resulting type after dereferencing.

Dereferences the value.

impl Drop for Handle
[src]

Executes the destructor for this type. Read more

impl FromRawHandle for Handle
[src]

Constructs a new I/O object from the specified raw handle. Read more

impl IntoRawHandle for Handle
[src]

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

Auto Trait Implementations

impl !Send for Handle

impl !Sync for Handle