pub enum DeserializationError {
Show 15 variants
SignatureError(SignatureError),
MissingAction,
MissingUpdate,
MissingMemberIdentifier,
Signature,
MissingMember,
Decode(DecodeError),
InvalidAccountId,
InvalidPasskey,
InvalidHash,
Unspecified(&'static str),
Deprecated(&'static str),
Ed25519(Error),
Bincode,
AddressValidation(IdentifierValidationError),
}Variants§
SignatureError(SignatureError)
MissingAction
Missing action.
Identity action not present in update. Not retryable.
MissingUpdate
Missing update.
Identity update not present. Not retryable.
MissingMemberIdentifier
Missing member identifier.
Member identifier field empty. Not retryable.
Signature
Missing signature.
Signature field not present. Not retryable.
MissingMember
Missing member.
Member field not present. Not retryable.
Decode(DecodeError)
Decode error.
Protobuf decoding failed. Not retryable.
InvalidAccountId
Invalid account ID.
CAIP-10 account ID is malformed. Not retryable.
InvalidPasskey
Invalid passkey.
Passkey data is malformed. Not retryable.
InvalidHash
Invalid hash.
Hash must be 32 bytes. Not retryable.
Unspecified(&'static str)
Unspecified value.
An unrecognized or unsupported value was encountered. Not retryable.
Deprecated(&'static str)
Deprecated field.
A deprecated field was used. Not retryable.
Ed25519(Error)
Ed25519 key error.
Failed to create public key from bytes. Not retryable.
Bincode
Unable to deserialize.
Bincode deserialization failed. Not retryable.
AddressValidation(IdentifierValidationError)
Trait Implementations§
Source§impl Debug for DeserializationError
impl Debug for DeserializationError
Source§impl Display for DeserializationError
impl Display for DeserializationError
Source§impl Error for DeserializationError
impl Error for DeserializationError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
Source§impl ErrorCode for DeserializationError
impl ErrorCode for DeserializationError
Source§fn error_code(&self) -> &'static str
fn error_code(&self) -> &'static str
Source§impl From<DecodeError> for DeserializationError
impl From<DecodeError> for DeserializationError
Source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Source§impl From<DeserializationError> for AssociationError
impl From<DeserializationError> for AssociationError
Source§fn from(source: DeserializationError) -> Self
fn from(source: DeserializationError) -> Self
Source§impl From<Error> for DeserializationError
impl From<Error> for DeserializationError
Source§impl From<IdentifierValidationError> for DeserializationError
impl From<IdentifierValidationError> for DeserializationError
Source§fn from(source: IdentifierValidationError) -> Self
fn from(source: IdentifierValidationError) -> Self
Source§impl From<SignatureError> for DeserializationError
impl From<SignatureError> for DeserializationError
Source§fn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Auto Trait Implementations§
impl Freeze for DeserializationError
impl !RefUnwindSafe for DeserializationError
impl Send for DeserializationError
impl Sync for DeserializationError
impl Unpin for DeserializationError
impl UnsafeUnpin for DeserializationError
impl !UnwindSafe for DeserializationError
Blanket Implementations§
§impl<T> AggregateExpressionMethods for T
impl<T> AggregateExpressionMethods for T
§fn aggregate_distinct(self) -> Self::Outputwhere
Self: DistinctDsl,
fn aggregate_distinct(self) -> Self::Outputwhere
Self: DistinctDsl,
DISTINCT modifier for aggregate functions Read more§fn aggregate_all(self) -> Self::Outputwhere
Self: AllDsl,
fn aggregate_all(self) -> Self::Outputwhere
Self: AllDsl,
ALL modifier for aggregate functions Read more§fn aggregate_filter<P>(self, f: P) -> Self::Outputwhere
P: AsExpression<Bool>,
Self: FilterDsl<<P as AsExpression<Bool>>::Expression>,
fn aggregate_filter<P>(self, f: P) -> Self::Outputwhere
P: AsExpression<Bool>,
Self: FilterDsl<<P as AsExpression<Bool>>::Expression>,
§fn aggregate_order<O>(self, o: O) -> Self::Outputwhere
Self: OrderAggregateDsl<O>,
fn aggregate_order<O>(self, o: O) -> Self::Outputwhere
Self: OrderAggregateDsl<O>,
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<T> IntoSql for T
impl<T> IntoSql for T
§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].