pub trait Connect<Endpoint> {
    // Required method
    fn connect_to(&self, handle: &Connection<Endpoint>) -> Client;
}

Required Methods§

source

fn connect_to(&self, handle: &Connection<Endpoint>) -> Client

Implementors§