1.4.0[−][src]Trait boolean_enums::lstd::os::windows::io::IntoRawHandle
This is supported on Windows only.
A trait to express the ability to consume an object and acquire ownership of
its raw HANDLE.
Required methods
fn into_raw_handle(self) -> *mut c_void
This is supported on Windows only.
Consumes this object, returning the raw underlying handle.
This function transfers ownership of the underlying handle to the caller. Callers are then the unique owners of the handle and must close it once it's no longer needed.
Implementors
impl IntoRawHandle for File[src]
impl IntoRawHandle for Filefn into_raw_handle(self) -> *mut c_void | [src] |
impl IntoRawHandle for Child[src]
impl IntoRawHandle for Childfn into_raw_handle(self) -> *mut c_void | [src] |
impl IntoRawHandle for ChildStderr[src]
impl IntoRawHandle for ChildStderrfn into_raw_handle(self) -> *mut c_void | [src] |
impl IntoRawHandle for ChildStdin[src]
impl IntoRawHandle for ChildStdinfn into_raw_handle(self) -> *mut c_void | [src] |
impl IntoRawHandle for ChildStdout[src]
impl IntoRawHandle for ChildStdoutfn into_raw_handle(self) -> *mut c_void | [src] |
impl<T> IntoRawHandle for JoinHandle<T>[src]
impl<T> IntoRawHandle for JoinHandle<T>fn into_raw_handle(self) -> *mut c_void | [src] |