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> Load<'tlb> for MsgForwardPrices
impl<'tlb> Load<'tlb> 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 Store for MsgForwardPrices
impl Store for MsgForwardPrices
source§fn store_into(
&self,
__builder: &mut CellBuilder,
__finalizer: &mut dyn Finalizer
) -> Result<(), Error>
fn store_into( &self, __builder: &mut CellBuilder, __finalizer: &mut dyn Finalizer ) -> Result<(), Error>
Tries to store itself into the cell builder.
impl Eq for MsgForwardPrices
impl StructuralEq for MsgForwardPrices
impl StructuralPartialEq for MsgForwardPrices
Auto Trait Implementations§
impl RefUnwindSafe for MsgForwardPrices
impl Send for MsgForwardPrices
impl Sync for MsgForwardPrices
impl Unpin for MsgForwardPrices
impl UnwindSafe for MsgForwardPrices
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