Enum everscale_types::models::message::MsgInfo
source · pub enum MsgInfo<C: CellFamily> {
Int(IntMsgInfo<C>),
ExtIn(ExtInMsgInfo),
ExtOut(ExtOutMsgInfo),
}Expand description
Message info.
Variants§
Int(IntMsgInfo<C>)
Internal message info,
ExtIn(ExtInMsgInfo)
External incoming message info.
ExtOut(ExtOutMsgInfo)
External outgoing message info,
Implementations§
Trait Implementations§
source§impl<C: CellFamily> Clone for MsgInfo<C>
impl<C: CellFamily> Clone for MsgInfo<C>
source§impl<C: CellFamily> Debug for MsgInfo<C>
impl<C: CellFamily> Debug for MsgInfo<C>
source§impl<'a, C: CellFamily> Load<'a, C> for MsgInfo<C>
impl<'a, C: CellFamily> Load<'a, C> for MsgInfo<C>
source§impl<C: CellFamily> PartialEq<MsgInfo<C>> for MsgInfo<C>
impl<C: CellFamily> PartialEq<MsgInfo<C>> for MsgInfo<C>
source§impl<C: CellFamily> Store<C> for MsgInfo<C>
impl<C: CellFamily> Store<C> for MsgInfo<C>
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.