pub trait FromRawHandle {
// Required method
unsafe fn from_raw_handle(handle: RawHandle) -> Self;
}
Expand description
Required Methods§
sourceunsafe fn from_raw_handle(handle: RawHandle) -> Self
unsafe fn from_raw_handle(handle: RawHandle) -> Self
Object Safety§
This trait is not object safe.
Implementors§
impl FromRawHandle for File
Available on crate feature
fs
and Windows only.