Struct hyper_openssl::SslStream
source · pub struct SslStream<S>(/* private fields */);
Expand description
A Hyper stream type using OpenSSL.
Implementations§
source§impl<S> SslStream<S>
impl<S> SslStream<S>
sourcepub fn new(ssl: Ssl, stream: S) -> Result<Self, ErrorStack>
pub fn new(ssl: Ssl, stream: S) -> Result<Self, ErrorStack>
Like SslStream::new
.
sourcepub fn poll_connect(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Error>>
pub fn poll_connect( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>
Like SslStream::connect
.
sourcepub async fn connect(self: Pin<&mut Self>) -> Result<(), Error>
pub async fn connect(self: Pin<&mut Self>) -> Result<(), Error>
A convenience method wrapping poll_connect
.
sourcepub fn poll_accept(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Error>>
pub fn poll_accept( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>
Like SslStream::accept
.
sourcepub async fn accept(self: Pin<&mut Self>) -> Result<(), Error>
pub async fn accept(self: Pin<&mut Self>) -> Result<(), Error>
A convenience method wrapping poll_accept
.
sourcepub fn poll_do_handshake(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Error>>
pub fn poll_do_handshake( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>
Like SslStream::do_handshake
.
sourcepub async fn do_handshake(self: Pin<&mut Self>) -> Result<(), Error>
pub async fn do_handshake(self: Pin<&mut Self>) -> Result<(), Error>
A convenience method wrapping poll_do_handshake
.
Trait Implementations§
source§impl<S> Write for SslStream<S>
impl<S> Write for SslStream<S>
source§fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8],
) -> Poll<Result<usize>>
fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8], ) -> Poll<Result<usize>>
Attempt to write bytes from
buf
into the destination. Read moresource§fn poll_flush(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Error>>
fn poll_flush( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>
Attempts to flush the object. Read more
source§fn poll_shutdown(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
) -> Poll<Result<(), Error>>
fn poll_shutdown( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll<Result<(), Error>>
Attempts to shut down this writer.
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
Returns whether this writer has an efficient
poll_write_vectored
implementation. Read moreAuto Trait Implementations§
impl<S> Freeze for SslStream<S>
impl<S> RefUnwindSafe for SslStream<S>where
S: RefUnwindSafe,
impl<S> Send for SslStream<S>where
S: Send,
impl<S> Sync for SslStream<S>where
S: Sync,
impl<S> Unpin for SslStream<S>where
S: Unpin,
impl<S> UnwindSafe for SslStream<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