1pub type SendError<E> = E; 2 3#[derive(Debug)] 4pub enum RecvError<E> { 5 Read(E), 6 Parse(flatty::Error), 7 Closed, 8}