Skip to main content

ClientError

Enum ClientError 

Source
pub enum ClientError {
    Auth {
        message: String,
    },
    Server {
        message: String,
        code: Option<String>,
    },
    Connection {
        message: String,
    },
    Timeout,
    FrameTooLarge {
        message: String,
    },
    Decode {
        message: String,
    },
}
Expand description

The stable error classes of the client contract (CLT-050).

Variants are the public API — matching on them is supported forever. Clone is required so one connection failure can fan out to every pending call (CLT-014).

Variants§

§

Auth

Authentication / authorization failure — handshake rejections (CLT-003) and NOAUTH/WRONGPASS/NOPERM-prefixed replies (CLT-051).

Fields

§message: String

Raw server message, verbatim.

§

Server

The server answered the call with Result::Err.

Fields

§message: String

Raw server message, verbatim (any [code] prefix included).

§code: Option<String>

Machine-readable code extracted from a leading "[code] " prefix under BracketCode / Both conventions (PRO-014).

§

Connection

Transport-level failure: dial, write, or the connection dying while the call was pending (CLT-004/030/031). Also raised for invalid endpoints (CLT-070).

Fields

§message: String

Human-readable cause.

§

Timeout

The per-call (or connect) timeout elapsed (CLT-020). The pending entry was removed; a late response is dropped per CLT-013.

§

FrameTooLarge

The server sent a frame larger than the profile cap; the connection was poisoned (WIRE-020 via CLT-014).

Fields

§message: String

Human-readable cause.

§

Decode

The server sent a malformed frame (or a push frame under a Reserved profile, CLT-060); the connection was poisoned (CLT-014).

Fields

§message: String

Human-readable cause.

Implementations§

Source§

impl ClientError

Source

pub fn from_server_message( message: impl Into<String>, convention: ErrorConvention, ) -> Self

Parse a server error string per the profile’s convention (CLT-050, PRO-014).

  • Resp3Prefixes: NOAUTH/WRONGPASS/NOPERMSelf::Auth; everything else (ERR … included) → Self::Server.
  • BracketCode: a leading "[code] " is extracted into code; the auth prefixes still map to Self::Auth regardless of convention (CLT-051).
  • Both: composes the two — bracket code first, then prefixes.
  • None: no parsing; the raw message becomes Self::Server.

message always carries the raw string, verbatim.

Trait Implementations§

Source§

impl Clone for ClientError

Source§

fn clone(&self) -> ClientError

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ClientError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ClientError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for ClientError

Source§

impl Error for ClientError

1.30.0 · Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl PartialEq for ClientError

Source§

fn eq(&self, other: &ClientError) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ClientError

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.