Trait std::os::windows::io::AsRawHandle 1.0.0
[−]
[src]
pub trait AsRawHandle { fn as_raw_handle(&self) -> RawHandle; }
This is supported on Windows only.
Extract raw handles.
Required Methods
fn as_raw_handle(&self) -> RawHandle
This is supported on Windows only.
Extracts the raw handle, without taking any ownership.
Implementors
impl AsRawHandle for File
impl AsRawHandle for Stdin
impl AsRawHandle for Stdout
impl AsRawHandle for Stderr
impl AsRawHandle for Child
impl AsRawHandle for ChildStdin
impl AsRawHandle for ChildStdout
impl AsRawHandle for ChildStderr
impl<T> AsRawHandle for JoinHandle<T>