Struct everscale_types::models::message::ExtOutMsgInfo
source · pub struct ExtOutMsgInfo {
pub src: IntAddr,
pub dst: Option<ExtAddr>,
pub created_lt: u64,
pub created_at: u32,
}Expand description
External outgoing message info.
Fields§
§src: IntAddrInternal source address.
dst: Option<ExtAddr>Optional external address.
created_lt: u64Logical time when the message was created.
created_at: u32Unix timestamp when the message was created.
Implementations§
Trait Implementations§
source§impl Clone for ExtOutMsgInfo
impl Clone for ExtOutMsgInfo
source§fn clone(&self) -> ExtOutMsgInfo
fn clone(&self) -> ExtOutMsgInfo
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 ExtOutMsgInfo
impl Debug for ExtOutMsgInfo
source§impl Default for ExtOutMsgInfo
impl Default for ExtOutMsgInfo
source§fn default() -> ExtOutMsgInfo
fn default() -> ExtOutMsgInfo
Returns the “default value” for a type. Read more
source§impl<'a, C: CellFamily> Load<'a, C> for ExtOutMsgInfo
impl<'a, C: CellFamily> Load<'a, C> for ExtOutMsgInfo
source§impl PartialEq<ExtOutMsgInfo> for ExtOutMsgInfo
impl PartialEq<ExtOutMsgInfo> for ExtOutMsgInfo
source§fn eq(&self, other: &ExtOutMsgInfo) -> bool
fn eq(&self, other: &ExtOutMsgInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for ExtOutMsgInfo
impl<C: CellFamily> Store<C> for ExtOutMsgInfo
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.