pub enum Error {
Show 13 variants
Io(Error),
JidParse(Error),
Protocol(ProtocolError),
Auth(AuthError),
Disconnected,
InvalidState,
Fmt(Error),
Utf8(Utf8Error),
Connection(Box<dyn ServerConnectorError>),
Dns(ProtoError),
Resolve(ResolveError),
Idna,
Addr(AddrParseError),
}
Expand description
Generic tokio_xmpp Error Top-level error type
Variants§
Io(Error)
I/O error
JidParse(Error)
Error parsing Jabber-Id
Protocol(ProtocolError)
Protocol-level error
Auth(AuthError)
Authentication error
Disconnected
Connection closed
InvalidState
Should never happen
Fmt(Error)
Fmt error
Utf8(Utf8Error)
Utf8 error
Connection(Box<dyn ServerConnectorError>)
Error specific to ServerConnector impl
Dns(ProtoError)
Available on crate feature
dns
only.DNS protocol error
Resolve(ResolveError)
Available on crate feature
dns
only.DNS resolution error
Idna
Available on crate feature
dns
only.DNS label conversion error, no details available from module
idna
Addr(AddrParseError)
Invalid IP/Port address
Trait Implementations§
source§impl Error for Error
impl Error for Error
1.81.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.81.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<AddrParseError> for Error
impl From<AddrParseError> for Error
source§fn from(e: AddrParseError) -> Error
fn from(e: AddrParseError) -> Error
Converts to this type from the input type.
source§impl From<Error> for Error
impl From<Error> for Error
source§fn from(e: JidParseError) -> Self
fn from(e: JidParseError) -> Self
Converts to this type from the input type.
source§impl From<ProtoError> for Error
Available on crate feature dns
only.
impl From<ProtoError> for Error
Available on crate feature
dns
only.source§fn from(e: DnsProtoError) -> Error
fn from(e: DnsProtoError) -> Error
Converts to this type from the input type.
source§impl From<ProtocolError> for Error
impl From<ProtocolError> for Error
source§fn from(e: ProtocolError) -> Self
fn from(e: ProtocolError) -> Self
Converts to this type from the input type.
source§impl From<ResolveError> for Error
Available on crate feature dns
only.
impl From<ResolveError> for Error
Available on crate feature
dns
only.source§fn from(e: DnsResolveError) -> Error
fn from(e: DnsResolveError) -> Error
Converts to this type from the input type.
source§impl<T: ServerConnectorError + 'static> From<T> for Error
impl<T: ServerConnectorError + 'static> From<T> for Error
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more