Type Alias Message

Source
pub type Message<'a> = BaseMessage<MsgInfo, CellSlice<'a>>;
Expand description

Blockchain message (with body as slice).

Aliased Type§

pub struct Message<'a> {
    pub info: MsgInfo,
    pub init: Option<StateInit>,
    pub body: CellSlice<'a>,
    pub layout: Option<MessageLayout>,
}

Fields§

§info: MsgInfo

Message info.

§init: Option<StateInit>

Optional state init.

§body: CellSlice<'a>

Optional payload.

§layout: Option<MessageLayout>

Optional message layout.

Trait Implementations§