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