#[non_exhaustive]pub enum PairingError {
Protocol(ProtocolError),
QrCodeFailed(String),
RelayError(String),
LocalServerError(String),
MdnsError(String),
NoPeerFound,
LanTimeout,
}Expand description
Errors that can occur during the pairing protocol.
Wraps protocol-level errors from auths-pairing-protocol and adds
transport-specific variants used by the CLI.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Protocol(ProtocolError)
A protocol-level error (expired token, bad signature, etc.).
QrCodeFailed(String)
QR code generation failed.
RelayError(String)
Network error during relay communication.
LocalServerError(String)
Local LAN server error.
MdnsError(String)
mDNS advertisement or discovery error.
NoPeerFound
No peer found on the local network.
LanTimeout
LAN pairing timed out waiting for a response.
Trait Implementations§
Source§impl AuthsErrorInfo for PairingError
impl AuthsErrorInfo for PairingError
Source§fn error_code(&self) -> &'static str
fn error_code(&self) -> &'static str
Returns a unique error code string for this error variant.
Source§fn suggestion(&self) -> Option<&'static str>
fn suggestion(&self) -> Option<&'static str>
Returns an optional actionable suggestion for resolving the error.
Source§impl Debug for PairingError
impl Debug for PairingError
Source§impl Display for PairingError
impl Display for PairingError
Source§impl Error for PairingError
impl Error for PairingError
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.0.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<Error> for PairingError
impl From<Error> for PairingError
Source§impl From<ProtocolError> for PairingError
impl From<ProtocolError> for PairingError
Source§fn from(source: ProtocolError) -> Self
fn from(source: ProtocolError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PairingError
impl RefUnwindSafe for PairingError
impl Send for PairingError
impl Sync for PairingError
impl Unpin for PairingError
impl UnsafeUnpin for PairingError
impl UnwindSafe for PairingError
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