pub trait FromRawHandle {
    // Required method
    unsafe fn from_raw_handle(handle: RawHandle) -> Self;
}
Expand description

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl FromRawHandle for File

Available on crate feature fs and Windows only.