pub struct HttpsListener<S>where
S: SslServer,{ /* private fields */ }
Expand description
A Http Listener over SSL.
Implementations§
source§impl<S> HttpsListener<S>where
S: SslServer,
impl<S> HttpsListener<S>where
S: SslServer,
sourcepub fn new<To>(addr: To, ssl: S) -> Result<HttpsListener<S>, Error>where
To: ToSocketAddrs,
pub fn new<To>(addr: To, ssl: S) -> Result<HttpsListener<S>, Error>where
To: ToSocketAddrs,
Start listening to an address over HTTPS.
sourcepub fn with_listener(listener: HttpListener, ssl: S) -> HttpsListener<S>
pub fn with_listener(listener: HttpListener, ssl: S) -> HttpsListener<S>
Construct an HttpsListener from a bound TcpListener
.
Trait Implementations§
source§impl<S> Clone for HttpsListener<S>
impl<S> Clone for HttpsListener<S>
source§fn clone(&self) -> HttpsListener<S>
fn clone(&self) -> HttpsListener<S>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<S> NetworkListener for HttpsListener<S>
impl<S> NetworkListener for HttpsListener<S>
source§fn accept(&mut self) -> Result<<S as SslServer>::Stream, Error>
fn accept(&mut self) -> Result<<S as SslServer>::Stream, Error>
Returns an iterator of streams.
source§fn local_addr(&mut self) -> Result<SocketAddr, Error>
fn local_addr(&mut self) -> Result<SocketAddr, Error>
Get the address this Listener ended up listening on.
source§fn set_read_timeout(&mut self, duration: Option<Duration>)
fn set_read_timeout(&mut self, duration: Option<Duration>)
Sets the read timeout for all streams that are accepted
source§fn set_write_timeout(&mut self, duration: Option<Duration>)
fn set_write_timeout(&mut self, duration: Option<Duration>)
Sets the write timeout for all streams that are accepted
source§fn incoming(&mut self) -> NetworkConnections<'_, Self> ⓘ
fn incoming(&mut self) -> NetworkConnections<'_, Self> ⓘ
Returns an iterator over incoming connections.
Auto Trait Implementations§
impl<S> Freeze for HttpsListener<S>where
S: Freeze,
impl<S> RefUnwindSafe for HttpsListener<S>where
S: RefUnwindSafe,
impl<S> Send for HttpsListener<S>where
S: Send,
impl<S> Sync for HttpsListener<S>where
S: Sync,
impl<S> Unpin for HttpsListener<S>where
S: Unpin,
impl<S> UnwindSafe for HttpsListener<S>where
S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)