Trait IntoRawHandle

1.4.0 · Source
pub trait IntoRawHandle {
    // Required method
    fn into_raw_handle(self) -> *mut c_void;
}
Expand description

A trait to express the ability to consume an object and acquire ownership of its raw HANDLE.

Required Methods§

1.4.0 · Source

fn into_raw_handle(self) -> *mut c_void

Consumes this object, returning the raw underlying handle.

This function is typically used to transfer ownership of the underlying handle to the caller. When used in this way, callers are then the unique owners of the handle and must close it once it’s no longer needed.

However, transferring ownership is not strictly required. Use a Into<OwnedHandle>::into implementation for an API which strictly transfers ownership.

Implementors§

Source§

impl IntoRawHandle for feature_extension_for_async_std::fs::File

1.4.0 · Source§

impl IntoRawHandle for std::fs::File

1.87.0 · Source§

impl IntoRawHandle for PipeReader

1.87.0 · Source§

impl IntoRawHandle for PipeWriter

1.63.0 · Source§

impl IntoRawHandle for OwnedHandle

1.4.0 · Source§

impl IntoRawHandle for Child

1.4.0 · Source§

impl IntoRawHandle for ChildStderr

1.4.0 · Source§

impl IntoRawHandle for ChildStdin

1.4.0 · Source§

impl IntoRawHandle for ChildStdout

1.9.0 · Source§

impl<T> IntoRawHandle for JoinHandle<T>

Source§

impl<T> IntoRawHandle for ScopedJoinHandle<'_, T>