Trait std::os::windows::io::IntoRawHandle 1.4.0[−][src]
pub trait IntoRawHandle { fn into_raw_handle(self) -> RawHandle; }
This is supported on Windows only.
Expand description
trait,用于表达使用对象并获得其原始 HANDLE
所有权的能力。
Required methods
fn into_raw_handle(self) -> RawHandle
[src]
fn into_raw_handle(self) -> RawHandle
[src]消费此 object,返回原始基础句柄。
该函数将基础句柄的所有权转让给调用者。 这样,调用方便是该句柄的唯一所有者,一旦不再需要该句柄,则必须将其关闭。