pub struct WeightToFeeCoefficient<Balance> {
pub coeff_integer: Balance,
pub coeff_frac: Perbill,
pub negative: bool,
pub degree: u8,
}
Expand description
One coefficient and its position in the WeightToFee
.
One term of polynomial is calculated as:
ⓘ
coeff_integer * x^(degree) + coeff_frac * x^(degree)
The negative
value encodes whether the term is added or subtracted from the
overall polynomial result.
Fields§
§coeff_integer: Balance
The integral part of the coefficient.
coeff_frac: Perbill
The fractional part of the coefficient.
negative: bool
True iff the coefficient should be interpreted as negative.
degree: u8
Degree/exponent of the term.
Implementations§
Source§impl<Balance> WeightToFeeCoefficient<Balance>
impl<Balance> WeightToFeeCoefficient<Balance>
Sourcepub fn saturating_eval(&self, result: Balance, x: Balance) -> Balance
pub fn saturating_eval(&self, result: Balance, x: Balance) -> Balance
Evaluate the term at x
and saturatingly amalgamate into result
.
The unsigned value for the term is calculated as:
ⓘ
(frac * x^(degree) + integer * x^(degree))
Depending on the value of negative
, it is added or subtracted from the result
.
Trait Implementations§
Source§impl<Balance: Clone> Clone for WeightToFeeCoefficient<Balance>
impl<Balance: Clone> Clone for WeightToFeeCoefficient<Balance>
Source§fn clone(&self) -> WeightToFeeCoefficient<Balance>
fn clone(&self) -> WeightToFeeCoefficient<Balance>
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<Balance> Decode for WeightToFeeCoefficient<Balance>where
Balance: Decode,
impl<Balance> Decode for WeightToFeeCoefficient<Balance>where
Balance: Decode,
Source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy, ) -> Result<Self, Error>
Attempt to deserialise the value from input.
Source§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
Source§impl<Balance> Encode for WeightToFeeCoefficient<Balance>where
Balance: Encode,
impl<Balance> Encode for WeightToFeeCoefficient<Balance>where
Balance: Encode,
Source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
If possible give a hint of expected size of the encoding. Read more
Source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
Convert self to a slice and append it to the destination.
Source§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
Convert self to a slice and then invoke the given closure with it.
Source§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
Source§impl<Balance> TypeInfo for WeightToFeeCoefficient<Balance>where
Balance: TypeInfo + 'static,
impl<Balance> TypeInfo for WeightToFeeCoefficient<Balance>where
Balance: TypeInfo + 'static,
impl<Balance> EncodeLike for WeightToFeeCoefficient<Balance>where
Balance: Encode,
Auto Trait Implementations§
impl<Balance> Freeze for WeightToFeeCoefficient<Balance>where
Balance: Freeze,
impl<Balance> RefUnwindSafe for WeightToFeeCoefficient<Balance>where
Balance: RefUnwindSafe,
impl<Balance> Send for WeightToFeeCoefficient<Balance>where
Balance: Send,
impl<Balance> Sync for WeightToFeeCoefficient<Balance>where
Balance: Sync,
impl<Balance> Unpin for WeightToFeeCoefficient<Balance>where
Balance: Unpin,
impl<Balance> UnwindSafe for WeightToFeeCoefficient<Balance>where
Balance: UnwindSafe,
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<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere
T: Decode,
Source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
Source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
Source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read moreSource§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
Source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.