Home
last modified time | relevance | path

Searched refs:SelectOutput (Results 1 – 1 of 1) sorted by relevance

/tonic/tonic/src/transport/server/
H A Dio_stream.rs93 SelectOutput::Incoming(stream) => { in poll_next()
103 SelectOutput::Io(io) => Poll::Ready(Some(Ok(io))), in poll_next()
113 SelectOutput::TlsErr(e) => { in poll_next()
119 SelectOutput::Done => Poll::Ready(None), in poll_next()
148 ) -> SelectOutput<IO> in select()
155 Ok(None) => SelectOutput::Done, in select()
156 Err(e) => SelectOutput::TcpErr(e.into()), in select()
168 Ok(Ok(io)) => SelectOutput::Io(io), in select()
169 Ok(Err(e)) => SelectOutput::TlsErr(e), in select()
170 Err(e) => SelectOutput::TlsErr(e.into()), in select()
[all …]