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> Load<'a> for ExtInMsgInfo
impl<'a> Load<'a> 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 Store for ExtInMsgInfo
impl Store for ExtInMsgInfo
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 ExtInMsgInfo
impl StructuralEq for ExtInMsgInfo
impl StructuralPartialEq for ExtInMsgInfo
Auto Trait Implementations§
impl RefUnwindSafe for ExtInMsgInfo
impl Send for ExtInMsgInfo
impl Sync for ExtInMsgInfo
impl Unpin for ExtInMsgInfo
impl UnwindSafe for ExtInMsgInfo
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