pub enum SetAuthOutcome {
Success,
InvalidChainId,
NonceOverflow,
AccountCanNotSetAuth,
InvalidNonce,
InvalidSignature,
}
Expand description
The outcome of the action result.
Variants§
Trait Implementations§
source§impl Clone for SetAuthOutcome
impl Clone for SetAuthOutcome
source§fn clone(&self) -> SetAuthOutcome
fn clone(&self) -> SetAuthOutcome
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 SetAuthOutcome
impl Debug for SetAuthOutcome
source§impl Decodable for SetAuthOutcome
impl Decodable for SetAuthOutcome
source§impl Encodable for SetAuthOutcome
impl Encodable for SetAuthOutcome
source§impl PartialEq for SetAuthOutcome
impl PartialEq for SetAuthOutcome
source§fn eq(&self, other: &SetAuthOutcome) -> bool
fn eq(&self, other: &SetAuthOutcome) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SetAuthOutcome
impl Serialize for SetAuthOutcome
impl Copy for SetAuthOutcome
impl StructuralPartialEq for SetAuthOutcome
Auto Trait Implementations§
impl Freeze for SetAuthOutcome
impl RefUnwindSafe for SetAuthOutcome
impl Send for SetAuthOutcome
impl Sync for SetAuthOutcome
impl Unpin for SetAuthOutcome
impl UnwindSafe for SetAuthOutcome
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