pub trait Connect: Send + Sync { // Required method fn connect(&self, node_id: NodeId, handle: RemoteNodeHandle); }
Trait for establishing a connection to a remote node.