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
Object Safety§
This trait is not object safe.