pub enum AuthenticationError {
MaxSignaturesExceeded,
}
Expand description
An error enum for issues related to transaction or account authentication.
Variants§
MaxSignaturesExceeded
The number of signatures exceeds the maximum supported.
Trait Implementations§
source§impl Clone for AuthenticationError
impl Clone for AuthenticationError
source§fn clone(&self) -> AuthenticationError
fn clone(&self) -> AuthenticationError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AuthenticationError
impl Debug for AuthenticationError
source§impl Display for AuthenticationError
impl Display for AuthenticationError
source§impl Error for AuthenticationError
impl Error for AuthenticationError
1.30.0 · 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 PartialEq<AuthenticationError> for AuthenticationError
impl PartialEq<AuthenticationError> for AuthenticationError
source§fn eq(&self, other: &AuthenticationError) -> bool
fn eq(&self, other: &AuthenticationError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AuthenticationError
impl StructuralEq for AuthenticationError
impl StructuralPartialEq for AuthenticationError
Auto Trait Implementations§
impl RefUnwindSafe for AuthenticationError
impl Send for AuthenticationError
impl Sync for AuthenticationError
impl Unpin for AuthenticationError
impl UnwindSafe for AuthenticationError
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.