pub type OutputStream = OutputStream;Aliased Type§
pub enum OutputStream {
Discard,
Stdout(Stdout),
Stderr(Stderr),
TcpStream(Arc<TcpStream>),
UdpSocket(Arc<UdpSocket>),
Limited {
budget: u64,
stream: Box<OutputStream>,
},
HttpPending(Receiver<OutgoingBodyContentSender>),
HttpWriting(OutgoingBodyContentSender),
}