ClientError

Struct ClientError 

Source
pub struct ClientError { /* private fields */ }
Expand description

Client error type for all XRPC client operations

Implementations§

Source§

impl ClientError

Source

pub fn new(kind: ClientErrorKind, source: Option<BoxError>) -> Self

Create a new error with the given kind and optional source

Source

pub fn kind(&self) -> &ClientErrorKind

Get the error kind

Source

pub fn source_err(&self) -> Option<&BoxError>

Get the source error if present

Source

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

Get the context string if present

Source

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

Get the URL if present

Source

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

Get the details if present

Source

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

Get the location if present

Source

pub fn with_help(self, help: impl Into<SmolStr>) -> Self

Add help text to this error

Source

pub fn with_context(self, context: impl Into<SmolStr>) -> Self

Add context to this error

Source

pub fn with_url(self, url: impl Into<SmolStr>) -> Self

Add URL to this error

Source

pub fn with_details(self, details: impl Into<SmolStr>) -> Self

Add details to this error

Source

pub fn with_location(self, location: impl Into<SmolStr>) -> Self

Add location to this error

Source

pub fn transport(source: impl Error + Send + Sync + 'static) -> Self

Create a transport error

Source

pub fn invalid_request(msg: impl Into<SmolStr>) -> Self

Create an invalid request error

Source

pub fn encode(msg: impl Into<SmolStr>) -> Self

Create an encode error

Source

pub fn decode(msg: impl Into<SmolStr>) -> Self

Create a decode error

Source

pub fn http(status: StatusCode, body: Option<Bytes>) -> Self

Create an HTTP error with status code and optional body

Source

pub fn auth(auth_error: AuthError) -> Self

Create an authentication error

Source

pub fn identity_resolution(source: impl Error + Send + Sync + 'static) -> Self

Create an identity resolution error

Source

pub fn storage(source: impl Error + Send + Sync + 'static) -> Self

Create a storage error

Trait Implementations§

Source§

impl Debug for ClientError

Source§

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

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

impl Diagnostic for ClientError

Source§

fn help(&self) -> Option<Box<dyn Display + '_>>

Additional help text related to this Diagnostic. Do you have any advice for the poor soul who’s just run into this issue?
Source§

fn diagnostic_source<'a>(&'a self) -> Option<&'a dyn Diagnostic>

The cause of the error.
Source§

fn code<'a>(&'a self) -> Option<Box<dyn Display + 'a>>

Unique diagnostic code that can be used to look up more information about this Diagnostic. Ideally also globally unique, and documented in the toplevel crate’s documentation for easy searching. Rust path format (foo::bar::baz) is recommended, but more classic codes like E0123 or enums will work just fine.
Source§

fn severity(&self) -> Option<Severity>

Diagnostic severity. This may be used by ReportHandlers to change the display format of this diagnostic. Read more
Source§

fn url<'a>(&'a self) -> Option<Box<dyn Display + 'a>>

URL to visit for a more detailed explanation/help about this Diagnostic.
Source§

fn source_code(&self) -> Option<&dyn SourceCode>

Source code to apply this Diagnostic’s Diagnostic::labels to.
Source§

fn labels(&self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + '_>>

Labels to apply to this Diagnostic’s Diagnostic::source_code
Source§

fn related<'a>( &'a self, ) -> Option<Box<dyn Iterator<Item = &'a dyn Diagnostic> + 'a>>

Additional related Diagnostics.
Source§

impl Display for ClientError

Source§

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

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

impl Error for ClientError

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0§

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

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
§

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 From<AuthError> for ClientError

Source§

fn from(e: AuthError) -> Self

Converts to this type from the input type.
Source§

impl From<DecodeError<Error>> for ClientError

Source§

fn from(e: DecodeError<Error>) -> Self

Converts to this type from the input type.
Source§

impl From<DecodeError<HttpError>> for ClientError

Source§

fn from(e: DecodeError<HttpError>) -> Self

Converts to this type from the input type.
Source§

impl From<DecodeError<Infallible>> for ClientError

Source§

fn from(e: DecodeError<Infallible>) -> Self

Converts to this type from the input type.
Source§

impl From<DecodeError> for ClientError

Source§

fn from(e: DecodeError) -> Self

Converts to this type from the input type.
Source§

impl From<EncodeError> for ClientError

Source§

fn from(e: EncodeError) -> Self

Converts to this type from the input type.
Source§

impl From<Error<Error>> for ClientError

Available on crate feature websocket only.
Source§

fn from(e: Error<Error>) -> Self

Converts to this type from the input type.
Source§

impl From<Error> for ClientError

Available on crate feature reqwest-client only.
Source§

fn from(e: Error) -> Self

Converts to this type from the input type.
Source§

impl From<Error> for ClientError

Source§

fn from(e: Error) -> Self

Converts to this type from the input type.
Source§

impl From<HttpError> for ClientError

Source§

fn from(e: HttpError) -> Self

Converts to this type from the input type.
Source§

impl From<ParseError> for ClientError

Source§

fn from(e: ParseError) -> Self

Converts to this type from the input type.
Source§

impl From<SessionStoreError> for ClientError

Source§

fn from(e: SessionStoreError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

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
§

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

§

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: 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: 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> ToCowStr for T
where T: Display + ?Sized,

Source§

fn to_cowstr(&self) -> CowStr<'_>

Convert to a CowStr.
Source§

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

§

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

§

fn to_string(&self) -> String

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

impl<T> ToStringFallible for T
where T: Display,

Source§

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

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