Trait ProcessHandleExt

Source
pub trait ProcessHandleExt: Sized {
    // Required methods
    fn from_windows_handle<H>(handle: &H) -> Result<Self>
       where H: AsRawHandle;
    unsafe fn from_windows_handle_raw(handle: HANDLE) -> Result<Self>;
}

Required Methods§

Source

fn from_windows_handle<H>(handle: &H) -> Result<Self>
where H: AsRawHandle,

Source

unsafe fn from_windows_handle_raw(handle: HANDLE) -> Result<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§