diff --git a/tokio-xmpp/src/error.rs b/tokio-xmpp/src/error.rs index 5fc7c571..6d81a160 100644 --- a/tokio-xmpp/src/error.rs +++ b/tokio-xmpp/src/error.rs @@ -4,7 +4,7 @@ use hickory_resolver::{ error::ResolveError as DnsResolveError, proto::error::ProtoError as DnsProtoError, }; use sasl::client::MechanismError as SaslMechanismError; -use std::io::Error as IoError; +use std::io; use crate::{ connect::ServerConnectorError, jid, minidom, @@ -15,7 +15,7 @@ use crate::{ #[derive(Debug)] pub enum Error { /// I/O error - Io(IoError), + Io(io::Error), /// Error parsing Jabber-Id JidParse(jid::Error), /// Protocol-level error @@ -71,8 +71,8 @@ impl fmt::Display for Error { impl StdError for Error {} -impl From for Error { - fn from(e: IoError) -> Self { +impl From for Error { + fn from(e: io::Error) -> Self { Error::Io(e) } } diff --git a/tokio-xmpp/src/xmlstream/common.rs b/tokio-xmpp/src/xmlstream/common.rs index 0fe53b13..e47d3440 100644 --- a/tokio-xmpp/src/xmlstream/common.rs +++ b/tokio-xmpp/src/xmlstream/common.rs @@ -53,7 +53,7 @@ pub struct Timeouts { /// Maximum silence after a soft timeout. /// /// If the stream is silent for longer than this time after a soft timeout - /// has been emitted, a hard [`TimedOut`][`std::io::ErrorKind::TimedOut`] + /// has been emitted, a hard [`TimedOut`][`io::ErrorKind::TimedOut`] /// I/O error is returned and the stream is to be considered dead. pub response_timeout: Duration, }