pub enum RefundHandling {
Refund {
refund_ratio: Ratio<u64>,
},
Burn {
refund_ratio: Ratio<u64>,
},
NoRefund,
}Available on crate feature
std only.Expand description
Defines how refunds are calculated.
Variants§
Refund
Refund of excess payment amount goes to either a pre-defined purse, or back to the sender and the rest of the payment amount goes to the block proposer.
Fields
§
refund_ratio: Ratio<u64>Computes how much refund goes back to the user after deducting gas spent from the paid amount.
user_part = (payment_amount - gas_spent_amount) * refund_ratio validator_part = payment_amount - user_part
Any dust amount that was a result of multiplying by refund_ratio goes back to user.
Burn
Burns the refund amount.
Fields
NoRefund
No refunds.
Implementations§
Source§impl RefundHandling
impl RefundHandling
Sourcepub fn skip_refund(&self) -> bool
pub fn skip_refund(&self) -> bool
Returns true if we don’t need to process a refund.
Sourcepub fn refund_ratio(&self) -> Ratio<u64>
pub fn refund_ratio(&self) -> Ratio<u64>
Returns refund ratio.
Trait Implementations§
Source§impl Clone for RefundHandling
impl Clone for RefundHandling
Source§fn clone(&self) -> RefundHandling
fn clone(&self) -> RefundHandling
Returns a duplicate 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 RefundHandling
impl Debug for RefundHandling
Source§impl Default for RefundHandling
impl Default for RefundHandling
Source§fn default() -> RefundHandling
fn default() -> RefundHandling
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RefundHandling
impl<'de> Deserialize<'de> for RefundHandling
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 FromBytes for RefundHandling
impl FromBytes for RefundHandling
Source§impl PartialEq for RefundHandling
impl PartialEq for RefundHandling
Source§impl Serialize for RefundHandling
impl Serialize for RefundHandling
Source§impl ToBytes for RefundHandling
impl ToBytes for RefundHandling
Source§fn serialized_length(&self) -> usize
fn serialized_length(&self) -> usize
Returns the length of the
Vec<u8> which would be returned from a successful call to
to_bytes() or into_bytes(). The data is not actually serialized, so this call is
relatively cheap.impl Copy for RefundHandling
impl Eq for RefundHandling
impl StructuralPartialEq for RefundHandling
Auto Trait Implementations§
impl Freeze for RefundHandling
impl RefUnwindSafe for RefundHandling
impl Send for RefundHandling
impl Sync for RefundHandling
impl Unpin for RefundHandling
impl UnwindSafe for RefundHandling
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§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<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