pub trait Handle: Send + Sync {
// Required methods
fn new() -> Self;
fn is_inter_process_capable(&self) -> bool;
fn is_initialized(&self) -> bool;
}Expand description
Represents a handle that is in general inter-process capable.
Required Methods§
fn new() -> Self
fn is_inter_process_capable(&self) -> bool
fn is_initialized(&self) -> bool
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.