Enum ink_engine::AccountError
source · pub enum AccountError {
Decoding(Error),
UnexpectedUserAccount,
NoAccountForId(Vec<u8>),
}Expand description
Errors encountered upon interacting with accounts.
Variants§
Trait Implementations§
source§impl Clone for AccountError
impl Clone for AccountError
source§fn clone(&self) -> AccountError
fn clone(&self) -> AccountError
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 AccountError
impl Debug for AccountError
source§impl From<AccountError> for Error
impl From<AccountError> for Error
source§fn from(original: AccountError) -> Error
fn from(original: AccountError) -> Error
Converts to this type from the input type.
source§impl From<Error> for AccountError
impl From<Error> for AccountError
source§fn from(original: Error) -> AccountError
fn from(original: Error) -> AccountError
Converts to this type from the input type.
source§impl PartialEq<AccountError> for AccountError
impl PartialEq<AccountError> for AccountError
source§fn eq(&self, other: &AccountError) -> bool
fn eq(&self, other: &AccountError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.