Struct everscale_types::models::config::MsgForwardPrices
source · pub struct MsgForwardPrices {
pub lump_price: u64,
pub bit_price: u64,
pub cell_price: u64,
pub ihr_price_factor: u32,
pub first_frac: u16,
pub next_frac: u16,
}Expand description
Message forwarding prices.
Fields§
§lump_price: u64Fixed price in addition to the dynamic part.
bit_price: u64The price of bits in the message (bits in the root cell are not included).
cell_price: u64The price of cells in the message.
ihr_price_factor: u32TODO: add docs
first_frac: u16TODO: add docs
next_frac: u16TODO: add docs
Trait Implementations§
source§impl Clone for MsgForwardPrices
impl Clone for MsgForwardPrices
source§fn clone(&self) -> MsgForwardPrices
fn clone(&self) -> MsgForwardPrices
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 MsgForwardPrices
impl Debug for MsgForwardPrices
source§impl<'tlb, C: CellFamily> Load<'tlb, C> for MsgForwardPrices
impl<'tlb, C: CellFamily> Load<'tlb, C> for MsgForwardPrices
source§impl PartialEq<MsgForwardPrices> for MsgForwardPrices
impl PartialEq<MsgForwardPrices> for MsgForwardPrices
source§fn eq(&self, other: &MsgForwardPrices) -> bool
fn eq(&self, other: &MsgForwardPrices) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for MsgForwardPrices
impl<C: CellFamily> Store<C> for MsgForwardPrices
source§fn store_into(
&self,
__builder: &mut CellBuilder<C>,
__finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, __builder: &mut CellBuilder<C>, __finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.