pub trait Connection {
    // Required method
    fn split(self) -> (Box<FrameSink>, Box<FrameStream>);
}

Required Methods§

Implementors§