Trait IIpcNode

Source
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§

Provided Methods§

Source

fn with_src_pid(&mut self, src_pid: impl Into<u64>) -> &mut Self

Source

fn with_dst_pid(&mut self, dst_pid: impl Into<u64>) -> &mut Self

Source

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.

Implementors§