[−][src]Trait rocket::http::hyper::net::NetworkStream
An abstraction over streams that a Server
can utilize.
Required methods
fn peer_addr(&mut self) -> Result<SocketAddr, Error>
Get the remote address of the underlying connection.
fn set_read_timeout(&self, dur: Option<Duration>) -> Result<(), Error>
Set the maximum time to wait for a read to complete.
fn set_write_timeout(&self, dur: Option<Duration>) -> Result<(), Error>
Set the maximum time to wait for a write to complete.
Provided methods
fn close(&mut self, _how: Shutdown) -> Result<(), Error>
This will be called when Stream should no longer be kept alive.
Methods
impl dyn NetworkStream + 'static
[src]
pub fn is<T>(&self) -> bool where
T: Any,
[src]
T: Any,
Is the underlying type in this trait object a T
?
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: Any,
[src]
T: Any,
If the underlying type is T
, get a reference to the contained data.
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: Any,
[src]
T: Any,
If the underlying type is T
, get a mutable reference to the contained
data.
pub fn downcast<T>(
self: Box<dyn NetworkStream + 'static>
) -> Result<Box<T>, Box<dyn NetworkStream + 'static>> where
T: Any,
[src]
self: Box<dyn NetworkStream + 'static>
) -> Result<Box<T>, Box<dyn NetworkStream + 'static>> where
T: Any,
If the underlying type is T
, extract it.
impl dyn NetworkStream + 'static + Send
[src]
pub fn is<T>(&self) -> bool where
T: Any,
[src]
T: Any,
Is the underlying type in this trait object a T
?
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: Any,
[src]
T: Any,
If the underlying type is T
, get a reference to the contained data.
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: Any,
[src]
T: Any,
If the underlying type is T
, get a mutable reference to the contained
data.
pub fn downcast<T>(
self: Box<dyn NetworkStream + 'static + Send>
) -> Result<Box<T>, Box<dyn NetworkStream + 'static + Send>> where
T: Any,
[src]
self: Box<dyn NetworkStream + 'static + Send>
) -> Result<Box<T>, Box<dyn NetworkStream + 'static + Send>> where
T: Any,
If the underlying type is T
, extract it.
Implementations on Foreign Types
impl<S> NetworkStream for PooledStream<S> where
S: NetworkStream,
[src]
S: NetworkStream,
fn peer_addr(&mut self) -> Result<SocketAddr, Error>
[src]
fn set_read_timeout(&self, dur: Option<Duration>) -> Result<(), Error>
[src]
fn set_write_timeout(&self, dur: Option<Duration>) -> Result<(), Error>
[src]
fn close(&mut self, how: Shutdown) -> Result<(), Error>
[src]
fn set_previous_response_expected_no_content(&mut self, expected: bool)
[src]
fn previous_response_expected_no_content(&self) -> bool
[src]
Implementors
impl NetworkStream for HttpStream
[src]
fn peer_addr(&mut self) -> Result<SocketAddr, Error>
[src]
fn set_read_timeout(&self, dur: Option<Duration>) -> Result<(), Error>
[src]
fn set_write_timeout(&self, dur: Option<Duration>) -> Result<(), Error>
[src]
fn close(&mut self, how: Shutdown) -> Result<(), Error>
[src]
impl<S> NetworkStream for HttpsStream<S> where
S: NetworkStream,
[src]
S: NetworkStream,