pub struct ExternalIncomingMessage {
pub src: TonAddress,
pub dest: TonAddress,
pub import_fee: BigUint,
}
Fields§
§src: TonAddress
Address of a external sender of the message.
dest: TonAddress
Address of smart contract destination of message.
import_fee: BigUint
Fee for executing and delivering of message.
Trait Implementations§
Source§impl Clone for ExternalIncomingMessage
impl Clone for ExternalIncomingMessage
Source§fn clone(&self) -> ExternalIncomingMessage
fn clone(&self) -> ExternalIncomingMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ExternalIncomingMessage
impl Debug for ExternalIncomingMessage
Source§impl PartialEq for ExternalIncomingMessage
impl PartialEq for ExternalIncomingMessage
Source§fn eq(&self, other: &ExternalIncomingMessage) -> bool
fn eq(&self, other: &ExternalIncomingMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExternalIncomingMessage
Auto Trait Implementations§
impl Freeze for ExternalIncomingMessage
impl RefUnwindSafe for ExternalIncomingMessage
impl Send for ExternalIncomingMessage
impl Sync for ExternalIncomingMessage
impl Unpin for ExternalIncomingMessage
impl UnwindSafe for ExternalIncomingMessage
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