Enum keri_core::actor::SignedQueryError
source · pub enum SignedQueryError {
KeriError(Error),
DbError(DbError),
QueryError(QueryError),
UnknownSigner {
id: IdentifierPrefix,
},
InvalidSignature,
}Variants§
Trait Implementations§
source§impl Debug for SignedQueryError
impl Debug for SignedQueryError
source§impl<'de> Deserialize<'de> for SignedQueryError
impl<'de> Deserialize<'de> for SignedQueryError
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for SignedQueryError
impl Display for SignedQueryError
source§impl Error for SignedQueryError
impl Error for SignedQueryError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<DbError> for SignedQueryError
impl From<DbError> for SignedQueryError
source§impl From<Error> for SignedQueryError
impl From<Error> for SignedQueryError
source§impl From<QueryError> for SignedQueryError
impl From<QueryError> for SignedQueryError
source§fn from(source: QueryError) -> Self
fn from(source: QueryError) -> Self
Converts to this type from the input type.
source§impl From<SignedQueryError> for ActorError
impl From<SignedQueryError> for ActorError
source§fn from(source: SignedQueryError) -> Self
fn from(source: SignedQueryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SignedQueryError
impl RefUnwindSafe for SignedQueryError
impl Send for SignedQueryError
impl Sync for SignedQueryError
impl Unpin for SignedQueryError
impl UnwindSafe for SignedQueryError
Blanket Implementations§
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
Mutably borrows from an owned value. Read more