Struct rocket::http::hyper::net::HttpsListener [−][src]
pub struct HttpsListener<S> where
S: SslServer<HttpStream>, { /* fields omitted */ }
Expand description
A Http Listener over SSL.
Implementations
impl<S> HttpsListener<S> where
S: SslServer<HttpStream>,
[src]
impl<S> HttpsListener<S> where
S: SslServer<HttpStream>,
[src]pub fn new<To>(addr: To, ssl: S) -> Result<HttpsListener<S>, Error> where
To: ToSocketAddrs,
[src]
pub fn new<To>(addr: To, ssl: S) -> Result<HttpsListener<S>, Error> where
To: ToSocketAddrs,
[src]Start listening to an address over HTTPS.
pub fn with_listener(listener: HttpListener, ssl: S) -> HttpsListener<S>
[src]
pub fn with_listener(listener: HttpListener, ssl: S) -> HttpsListener<S>
[src]Construct an HttpsListener from a bound TcpListener
.
Trait Implementations
impl<S> Clone for HttpsListener<S> where
S: Clone + SslServer<HttpStream>,
[src]
impl<S> Clone for HttpsListener<S> where
S: Clone + SslServer<HttpStream>,
[src]pub fn clone(&self) -> HttpsListener<S>
[src]
pub fn clone(&self) -> HttpsListener<S>
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl<S> NetworkListener for HttpsListener<S> where
S: SslServer<HttpStream> + Clone,
[src]
impl<S> NetworkListener for HttpsListener<S> where
S: SslServer<HttpStream> + Clone,
[src]type Stream = <S as SslServer<HttpStream>>::Stream
type Stream = <S as SslServer<HttpStream>>::Stream
The stream produced for each connection.
pub fn accept(&mut self) -> Result<<S as SslServer<HttpStream>>::Stream, Error>
[src]
pub fn accept(&mut self) -> Result<<S as SslServer<HttpStream>>::Stream, Error>
[src]Returns an iterator of streams.
pub fn local_addr(&mut self) -> Result<SocketAddr, Error>
[src]
pub fn local_addr(&mut self) -> Result<SocketAddr, Error>
[src]Get the address this Listener ended up listening on.
pub fn set_read_timeout(&mut self, duration: Option<Duration>)
[src]
pub fn set_read_timeout(&mut self, duration: Option<Duration>)
[src]Sets the read timeout for all streams that are accepted
pub fn set_write_timeout(&mut self, duration: Option<Duration>)
[src]
pub fn set_write_timeout(&mut self, duration: Option<Duration>)
[src]Sets the write timeout for all streams that are accepted
fn incoming(&mut self) -> NetworkConnections<'_, Self>ⓘNotable traits for NetworkConnections<'a, N>
impl<'a, N> Iterator for NetworkConnections<'a, N> where
N: 'a + NetworkListener, type Item = Result<<N as NetworkListener>::Stream, Error>;
[src]
fn incoming(&mut self) -> NetworkConnections<'_, Self>ⓘNotable traits for NetworkConnections<'a, N>
impl<'a, N> Iterator for NetworkConnections<'a, N> where
N: 'a + NetworkListener, type Item = Result<<N as NetworkListener>::Stream, Error>;
[src]Returns an iterator over incoming connections.
Auto Trait Implementations
impl<S> RefUnwindSafe for HttpsListener<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
impl<S> Send for HttpsListener<S> where
S: Send,
S: Send,
impl<S> Sync for HttpsListener<S> where
S: Sync,
S: Sync,
impl<S> Unpin for HttpsListener<S> where
S: Unpin,
S: Unpin,
impl<S> UnwindSafe for HttpsListener<S> where
S: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
pub fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
pub fn into_collection<A>(self) -> SmallVec<A> where
A: Array<Item = T>,
Converts self
into a collection.
pub fn mapped<U, F, A>(self, f: F) -> SmallVec<A> where
F: FnMut(T) -> U,
A: Array<Item = U>,
F: FnMut(T) -> U,
A: Array<Item = U>,
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,