1.0.0[][src]Trait std::os::windows::io::AsRawHandle

pub trait AsRawHandle {
    fn as_raw_handle(&self) -> RawHandle;
}
This is supported on Windows only.

Extract raw handles.

Required Methods

This is supported on Windows only.

Extracts the raw handle, without taking any ownership.

Implementors

impl AsRawHandle for File
[src]

This is supported on Windows only.

impl AsRawHandle for Stderr
[src]

This is supported on Windows only.

impl AsRawHandle for Stdin
[src]

This is supported on Windows only.

impl AsRawHandle for Stdout
[src]

This is supported on Windows only.

impl AsRawHandle for Child
[src]

This is supported on Windows only.

impl AsRawHandle for ChildStderr
[src]

This is supported on Windows only.

impl AsRawHandle for ChildStdin
[src]

This is supported on Windows only.

impl AsRawHandle for ChildStdout
[src]

This is supported on Windows only.

impl<T> AsRawHandle for JoinHandle<T>
[src]

This is supported on Windows only.