Type Alias OwnedMessage

Source
pub type OwnedMessage = BaseMessage<MsgInfo, CellSliceParts>;
Expand description

Blockchain message (with body as slice parts).

Aliased Type§

pub struct OwnedMessage {
    pub info: MsgInfo,
    pub init: Option<StateInit>,
    pub body: (CellSliceRange, Cell),
    pub layout: Option<MessageLayout>,
}

Fields§

§info: MsgInfo

Message info.

§init: Option<StateInit>

Optional state init.

§body: (CellSliceRange, Cell)

Optional payload.

§layout: Option<MessageLayout>

Optional message layout.

Trait Implementations§