Type Alias OwnedRelaxedMessage

Source
pub type OwnedRelaxedMessage = BaseMessage<RelaxedMsgInfo, CellSliceParts>;
Expand description

Unfinished blockchain message (with body as slice parts).

Aliased Type§

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

Fields§

§info: RelaxedMsgInfo

Message info.

§init: Option<StateInit>

Optional state init.

§body: (CellSliceRange, Cell)

Optional payload.

§layout: Option<MessageLayout>

Optional message layout.

Trait Implementations§