pub trait FromRawHandle { unsafe fn from_raw_handle(handle: RawHandle) -> Self; }
Construct I/O objects from raw handles.
unsafe fn from_raw_handle(handle: RawHandle) -> Self
Constructs a new I/O object from the specified raw handle.
This function will consume ownership of the handle given, passing responsibility for closing the handle to the returned object.
This function is also unsafe as the primitives currently returned have the contract that they are the sole owner of the file descriptor they are wrapping. Usage of this function could accidentally allow violating this contract which can cause memory unsafety in code that relies on it being true.
impl FromRawHandle for File
[src]
unsafe fn from_raw_handle(handle: RawHandle) -> FileⓘNotable traits for File
impl Read for File
impl<'_> Read for &'_ File
impl Write for File
impl<'_> Write for &'_ File
[src]
impl FromRawHandle for Stdio
[src]
unsafe fn from_raw_handle(handle: RawHandle) -> Stdio
[src]
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/os/windows/io/trait.FromRawHandle.html