pub enum CommonMsgInfo {
InternalMessage(InternalMessage),
ExternalIncomingMessage(ExternalIncomingMessage),
ExternalOutgoingMessage(ExternalOutgoingMessage),
}
Variants§
InternalMessage(InternalMessage)
ExternalIncomingMessage(ExternalIncomingMessage)
ExternalOutgoingMessage(ExternalOutgoingMessage)
Implementations§
Source§impl CommonMsgInfo
impl CommonMsgInfo
pub fn new_default_internal(dest: &TonAddress, value: &BigUint) -> Self
pub fn src(&self) -> TonAddress
pub fn dest(&self) -> TonAddress
Trait Implementations§
Source§impl Clone for CommonMsgInfo
impl Clone for CommonMsgInfo
Source§fn clone(&self) -> CommonMsgInfo
fn clone(&self) -> CommonMsgInfo
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 CommonMsgInfo
impl Debug for CommonMsgInfo
Source§impl PartialEq for CommonMsgInfo
impl PartialEq for CommonMsgInfo
impl StructuralPartialEq for CommonMsgInfo
Auto Trait Implementations§
impl Freeze for CommonMsgInfo
impl RefUnwindSafe for CommonMsgInfo
impl Send for CommonMsgInfo
impl Sync for CommonMsgInfo
impl Unpin for CommonMsgInfo
impl UnwindSafe for CommonMsgInfo
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