Fix incorrect spelling (#76)
This commit is contained in:
parent
56855b7166
commit
ea14b430d7
@ -161,22 +161,22 @@ pub struct Connect<IO>(MidHandshake<client::TlsStream<IO>>);
|
|||||||
pub struct Accept<IO>(MidHandshake<server::TlsStream<IO>>);
|
pub struct Accept<IO>(MidHandshake<server::TlsStream<IO>>);
|
||||||
|
|
||||||
/// Like [Connect], but returns `IO` on failure.
|
/// Like [Connect], but returns `IO` on failure.
|
||||||
pub struct FailableConnect<IO>(MidHandshake<client::TlsStream<IO>>);
|
pub struct FallibleConnect<IO>(MidHandshake<client::TlsStream<IO>>);
|
||||||
|
|
||||||
/// Like [Accept], but returns `IO` on failure.
|
/// Like [Accept], but returns `IO` on failure.
|
||||||
pub struct FailableAccept<IO>(MidHandshake<server::TlsStream<IO>>);
|
pub struct FallibleAccept<IO>(MidHandshake<server::TlsStream<IO>>);
|
||||||
|
|
||||||
impl<IO> Connect<IO> {
|
impl<IO> Connect<IO> {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn into_failable(self) -> FailableConnect<IO> {
|
pub fn into_fallible(self) -> FallibleConnect<IO> {
|
||||||
FailableConnect(self.0)
|
FallibleConnect(self.0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<IO> Accept<IO> {
|
impl<IO> Accept<IO> {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn into_failable(self) -> FailableAccept<IO> {
|
pub fn into_fallible(self) -> FallibleAccept<IO> {
|
||||||
FailableAccept(self.0)
|
FallibleAccept(self.0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -198,7 +198,7 @@ impl<IO: AsyncRead + AsyncWrite + Unpin> Future for Accept<IO> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<IO: AsyncRead + AsyncWrite + Unpin> Future for FailableConnect<IO> {
|
impl<IO: AsyncRead + AsyncWrite + Unpin> Future for FallibleConnect<IO> {
|
||||||
type Output = Result<client::TlsStream<IO>, (io::Error, IO)>;
|
type Output = Result<client::TlsStream<IO>, (io::Error, IO)>;
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
@ -207,7 +207,7 @@ impl<IO: AsyncRead + AsyncWrite + Unpin> Future for FailableConnect<IO> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<IO: AsyncRead + AsyncWrite + Unpin> Future for FailableAccept<IO> {
|
impl<IO: AsyncRead + AsyncWrite + Unpin> Future for FallibleAccept<IO> {
|
||||||
type Output = Result<server::TlsStream<IO>, (io::Error, IO)>;
|
type Output = Result<server::TlsStream<IO>, (io::Error, IO)>;
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
|
Loading…
Reference in New Issue
Block a user