Struct near_primitives::errors::BalanceMismatchError
source · pub struct BalanceMismatchError {Show 14 fields
pub incoming_validator_rewards: Balance,
pub initial_accounts_balance: Balance,
pub incoming_receipts_balance: Balance,
pub processed_delayed_receipts_balance: Balance,
pub initial_postponed_receipts_balance: Balance,
pub forwarded_buffered_receipts_balance: Balance,
pub final_accounts_balance: Balance,
pub outgoing_receipts_balance: Balance,
pub new_delayed_receipts_balance: Balance,
pub final_postponed_receipts_balance: Balance,
pub tx_burnt_amount: Balance,
pub slashed_burnt_amount: Balance,
pub new_buffered_receipts_balance: Balance,
pub other_burnt_amount: Balance,
}Expand description
Happens when the input balance doesn’t match the output balance in Runtime apply.
Fields§
§incoming_validator_rewards: Balance§initial_accounts_balance: Balance§incoming_receipts_balance: Balance§processed_delayed_receipts_balance: Balance§initial_postponed_receipts_balance: Balance§forwarded_buffered_receipts_balance: Balance§final_accounts_balance: Balance§outgoing_receipts_balance: Balance§new_delayed_receipts_balance: Balance§final_postponed_receipts_balance: Balance§tx_burnt_amount: Balance§slashed_burnt_amount: Balance§new_buffered_receipts_balance: Balance§other_burnt_amount: BalanceTrait Implementations§
source§impl Clone for BalanceMismatchError
impl Clone for BalanceMismatchError
source§fn clone(&self) -> BalanceMismatchError
fn clone(&self) -> BalanceMismatchError
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 BalanceMismatchError
impl Debug for BalanceMismatchError
source§impl<'de> Deserialize<'de> for BalanceMismatchError
impl<'de> Deserialize<'de> for BalanceMismatchError
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 BalanceMismatchError
impl Display for BalanceMismatchError
source§impl Error for BalanceMismatchError
impl Error for BalanceMismatchError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<BalanceMismatchError> for RuntimeError
impl From<BalanceMismatchError> for RuntimeError
source§fn from(e: BalanceMismatchError) -> Self
fn from(e: BalanceMismatchError) -> Self
Converts to this type from the input type.
source§impl PartialEq for BalanceMismatchError
impl PartialEq for BalanceMismatchError
source§impl Serialize for BalanceMismatchError
impl Serialize for BalanceMismatchError
impl Eq for BalanceMismatchError
impl StructuralPartialEq for BalanceMismatchError
Auto Trait Implementations§
impl Freeze for BalanceMismatchError
impl RefUnwindSafe for BalanceMismatchError
impl Send for BalanceMismatchError
impl Sync for BalanceMismatchError
impl Unpin for BalanceMismatchError
impl UnwindSafe for BalanceMismatchError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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>
Converts
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>
Converts
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