Skip to main content

Error

Enum Error 

Source
#[non_exhaustive]
pub enum Error { Api(Box<ApiError>), Configuration(String), Authentication(String), Validation(String), NotFound(String), Operation { kind: ErrorKind, code: String, message: String, }, Timeout { method: String, path: String, elapsed: Duration, }, Network { method: String, path: String, source: Error, }, Decode { context: String, source: Error, }, Encode { source: Error, }, }
Expand description

The error type returned by every fallible SDK call.

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.
§

Api(Box<ApiError>)

The API responded with a non-2xx status.

Boxed so that Result<T> stays small on the happy path, which every call in the crate pays for.

§

Configuration(String)

The client was constructed or used with invalid configuration.

§

Authentication(String)

A token could not be verified (malformed, bad signature, or expired).

§

Validation(String)

A client-side precondition failed before the request was sent.

§

NotFound(String)

The SDK resolved that a resource does not exist without the API saying so, e.g. asking for a participant in a room that has no live session.

§

Operation

A multi-step operation the SDK drives to completion failed, e.g. a batch-call file that the server could not parse.

Carries a machine-readable code but no HTTP status, since the failure is a result rather than a response.

Fields

§kind: ErrorKind

How to classify this failure.

§code: String

A machine-readable code, e.g. batchcall_parse_failed.

§message: String

A human-readable description.

§

Timeout

The client-side request timeout elapsed.

Fields

§method: String

The HTTP method of the request that timed out.

§path: String

The path of the request that timed out.

§elapsed: Duration

The timeout that elapsed.

§

Network

The request could not be sent, or the response could not be read.

Fields

§method: String

The HTTP method of the failing request.

§path: String

The path of the failing request.

§source: Error

The underlying transport error.

§

Decode

A response body could not be deserialized into the expected type.

Fields

§context: String

What was being decoded, e.g. GET /v2/rooms.

§source: Error

The underlying deserialization error.

§

Encode

A request body could not be serialized.

Fields

§source: Error

The underlying serialization error.

Implementations§

Source§

impl Error

Source

pub fn kind(&self) -> ErrorKind

The coarse classification of this error.

Source

pub fn as_api(&self) -> Option<&ApiError>

The underlying ApiError, if this error came from an HTTP response.

Source

pub fn status(&self) -> Option<u16>

The HTTP status code, if this error came from an HTTP response.

Source

pub fn code(&self) -> Option<&str>

The machine-readable error code, if present.

Source

pub fn request_id(&self) -> Option<&str>

The server request id, if the response carried one.

Source

pub fn retry_after(&self) -> Option<Duration>

The cooldown the server asked for via Retry-After on a 429.

Source

pub fn is_not_found(&self) -> bool

Whether this is a not-found error (HTTP 404 or 402).

Source

pub fn is_authentication(&self) -> bool

Whether this is an authentication error (HTTP 401, or a bad token).

Source

pub fn is_permission(&self) -> bool

Whether this is a permission error (HTTP 403).

Source

pub fn is_validation(&self) -> bool

Whether this is a validation error (HTTP 400, or a client-side check).

Source

pub fn is_rate_limit(&self) -> bool

Whether this is a rate-limit error (HTTP 429).

Source

pub fn is_conflict(&self) -> bool

Whether this is a conflict error (HTTP 409).

Source

pub fn is_timeout(&self) -> bool

Whether this is a client-side timeout.

Trait Implementations§

Source§

impl Debug for Error

Source§

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

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

impl Display for Error

Source§

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

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

impl Error for Error

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

Auto Trait Implementations§

§

impl !RefUnwindSafe for Error

§

impl !UnwindSafe for Error

§

impl Freeze for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnsafeUnpin for Error

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more