pub trait IIpcNode {
// Required method
fn get_mut_dynamic_node(&mut self) -> &mut DynamicNode;
// Provided methods
fn with_src_pid(&mut self, src_pid: impl Into<u64>) -> &mut Self { ... }
fn with_dst_pid(&mut self, dst_pid: impl Into<u64>) -> &mut Self { ... }
fn with_ipc_type(&mut self, ipc_type: impl Into<String>) -> &mut Self { ... }
}
Required Methods§
fn get_mut_dynamic_node(&mut self) -> &mut DynamicNode
Provided Methods§
fn with_src_pid(&mut self, src_pid: impl Into<u64>) -> &mut Self
fn with_dst_pid(&mut self, dst_pid: impl Into<u64>) -> &mut Self
fn with_ipc_type(&mut self, ipc_type: impl Into<String>) -> &mut 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.