Enum Error
#[repr(u32)]pub enum Error {
Success = 0,
CalleeTrapped = 1,
CalleeReverted = 2,
KeyNotFound = 3,
TransferFailed = 4,
OutOfResources = 5,
EcdsaRecoveryFailed = 7,
Sr25519VerifyFailed = 8,
DuplicateContractAddress = 11,
Unknown = 12,
}
Expand description
Every error that can be returned to a contract when it calls any of the host functions.
Variants§
Success = 0
API call successful.
CalleeTrapped = 1
The called function trapped and has its state changes reverted.
In this case no output buffer is returned.
Can only be returned from call
and instantiate
.
CalleeReverted = 2
The called function ran to completion but decided to revert its state.
An output buffer is returned when one was supplied.
Can only be returned from call
and instantiate
.
KeyNotFound = 3
The passed key does not exist in storage.
TransferFailed = 4
Transfer failed for other not further specified reason. Most probably reserved or locked balance of the sender that was preventing the transfer.
OutOfResources = 5
The subcall ran out of weight or storage deposit.
EcdsaRecoveryFailed = 7
ECDSA public key recovery failed. Most probably wrong recovery id or signature.
Sr25519VerifyFailed = 8
sr25519 signature verification failed.
DuplicateContractAddress = 11
Contract instantiation failed because the address already exists. Occurs when instantiating the same contract with the same salt more than once.
Unknown = 12
Returns if an unknown error was received from the host module.
Trait Implementations§
§impl Debug for ReturnErrorCode
impl Debug for ReturnErrorCode
§impl PartialEq for ReturnErrorCode
impl PartialEq for ReturnErrorCode
impl Eq for ReturnErrorCode
impl StructuralPartialEq for ReturnErrorCode
Auto Trait Implementations§
impl Freeze for ReturnErrorCode
impl RefUnwindSafe for ReturnErrorCode
impl Send for ReturnErrorCode
impl Sync for ReturnErrorCode
impl Unpin for ReturnErrorCode
impl UnwindSafe for ReturnErrorCode
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§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, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.