Skip to main content

RecursiveError

Enum RecursiveError 

Source
pub enum RecursiveError {
    Root {
        context: &'static str,
        source: Box<Error>,
    },
    TransactionContext {
        context: &'static str,
        source: Box<Error>,
    },
    E2e {
        context: &'static str,
        source: Box<E2eIdentityError>,
    },
    MlsClient {
        context: &'static str,
        source: Box<Error>,
    },
    MlsConversation {
        context: &'static str,
        source: Box<Error>,
    },
    MlsCredential {
        context: &'static str,
        source: Box<Error>,
    },
}
Expand description

These errors wrap each of the module-specific errors in CoreCrypto.

The goal here is to reduce the need to redeclare each of these error types as an individual variant of a module-specific error type.

Variants§

§

Root

Fields

§context: &'static str
§source: Box<Error>
§

TransactionContext

Fields

§context: &'static str
§source: Box<Error>
§

E2e

Fields

§context: &'static str
§

MlsClient

Fields

§context: &'static str
§source: Box<Error>
§

MlsConversation

Fields

§context: &'static str
§source: Box<Error>
§

MlsCredential

Fields

§context: &'static str
§source: Box<Error>

Implementations§

Source§

impl RecursiveError

Source

pub fn root<E: Into<Error>>(context: &'static str) -> impl FnOnce(E) -> Self

Wrap an error convertible into crate::Error, given the current context.

Prefer Self::context unless you are relying on the Into conversion.

Source

pub fn transaction<E: Into<Error>>( context: &'static str, ) -> impl FnOnce(E) -> Self

Wrap an error convertible into crate::transaction_context::Error, given the current context.

Prefer Self::context unless you are relying on the Into conversion.

Source

pub fn e2e_identity<E: Into<E2eIdentityError>>( context: &'static str, ) -> impl FnOnce(E) -> Self

Wrap an error convertible into wire_e2e_identity::E2eIdentityError, given the current context.

Prefer Self::context unless you are relying on the Into conversion.

Source

pub fn mls_client<E: Into<Error>>( context: &'static str, ) -> impl FnOnce(E) -> Self

Wrap an error convertible into crate::mls::session::Error, given the current context.

Prefer Self::context unless you are relying on the Into conversion.

Source

pub fn mls_conversation<E: Into<Error>>( context: &'static str, ) -> impl FnOnce(E) -> Self

Wrap an error convertible into crate::mls::conversation::Error, given the current context.

Prefer Self::context unless you are relying on the Into conversion.

Source

pub fn mls_credential<E: Into<Error>>( context: &'static str, ) -> impl FnOnce(E) -> Self

Wrap an error convertible into crate::mls::credential::Error, given the current context.

Prefer Self::context unless you are relying on the Into conversion.

Source§

impl RecursiveError

Source

pub fn context<E: ToRecursiveError>( context: &'static str, ) -> impl FnOnce(E) -> Self

Wrap any error which RecursiveError knows how to wrap, given the current context.

The variant is selected from the error’s type, so this is usually what you want:

self.session().await.map_err(RecursiveError::context("getting mls client"))?

This only accepts the module error types themselves. When you need to convert first, for instance because you are holding a crate::TlsCodecError which several module errors can absorb, reach for the variant-specific constructor such as Self::mls_conversation instead.

Trait Implementations§

Source§

impl Debug for RecursiveError

Source§

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

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

impl Display for RecursiveError

Source§

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

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

impl Error for RecursiveError

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 From<RecursiveError> for Error

Source§

fn from(source: RecursiveError) -> Self

Converts to this type from the input type.
Source§

impl From<RecursiveError> for Error

Source§

fn from(source: RecursiveError) -> Self

Converts to this type from the input type.
Source§

impl From<RecursiveError> for Error

Source§

fn from(source: RecursiveError) -> Self

Converts to this type from the input type.
Source§

impl From<RecursiveError> for Error

Source§

fn from(source: RecursiveError) -> Self

Converts to this type from the input type.

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
§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<E> InnermostErrorMessage for E
where E: Error,

Source§

fn innermost_error_message(&self) -> String

Produce the error message from the innermost wrapped error.
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> MaybeSendSync for T

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

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

§

fn vzip(self) -> V