Type Alias RelaxedMessage

Source
pub type RelaxedMessage<'a> = BaseMessage<RelaxedMsgInfo, CellSlice<'a>>;
Expand description

Unfinished blockchain message (with body as slice).

Aliased Type§

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

Fields§

§info: RelaxedMsgInfo

Message info.

§init: Option<StateInit>

Optional state init.

§body: CellSlice<'a>

Optional payload.

§layout: Option<MessageLayout>

Optional message layout.

Trait Implementations§