Enum everscale_types::models::message::MsgInfo
source · pub enum MsgInfo {
Int(IntMsgInfo),
ExtIn(ExtInMsgInfo),
ExtOut(ExtOutMsgInfo),
}Expand description
Message info.
Variants§
Int(IntMsgInfo)
Internal message info,
ExtIn(ExtInMsgInfo)
External incoming message info.
ExtOut(ExtOutMsgInfo)
External outgoing message info,
Implementations§
Trait Implementations§
source§impl PartialEq<MsgInfo> for MsgInfo
impl PartialEq<MsgInfo> for MsgInfo
source§impl Store for MsgInfo
impl Store for MsgInfo
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 MsgInfo
impl StructuralEq for MsgInfo
impl StructuralPartialEq for MsgInfo
Auto Trait Implementations§
impl !RefUnwindSafe for MsgInfo
impl Send for MsgInfo
impl Sync for MsgInfo
impl Unpin for MsgInfo
impl !UnwindSafe for MsgInfo
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