Struct everscale_types::models::message::ExtInMsgInfo
source · pub struct ExtInMsgInfo {
pub src: Option<ExtAddr>,
pub dst: IntAddr,
pub import_fee: Tokens,
}Expand description
External incoming message info.
Fields§
§src: Option<ExtAddr>Optional external source address.
dst: IntAddrInternal destination address.
import_fee: TokensExternal message import fee.
NOTE: currently unused and reserved for future use.
Implementations§
Trait Implementations§
source§impl Clone for ExtInMsgInfo
impl Clone for ExtInMsgInfo
source§fn clone(&self) -> ExtInMsgInfo
fn clone(&self) -> ExtInMsgInfo
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 ExtInMsgInfo
impl Debug for ExtInMsgInfo
source§impl Default for ExtInMsgInfo
impl Default for ExtInMsgInfo
source§fn default() -> ExtInMsgInfo
fn default() -> ExtInMsgInfo
Returns the “default value” for a type. Read more
source§impl<'a, C: CellFamily> Load<'a, C> for ExtInMsgInfo
impl<'a, C: CellFamily> Load<'a, C> for ExtInMsgInfo
source§impl PartialEq<ExtInMsgInfo> for ExtInMsgInfo
impl PartialEq<ExtInMsgInfo> for ExtInMsgInfo
source§fn eq(&self, other: &ExtInMsgInfo) -> bool
fn eq(&self, other: &ExtInMsgInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for ExtInMsgInfo
impl<C: CellFamily> Store<C> for ExtInMsgInfo
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.