Struct bee_message::payload::transaction::TransactionPayload[][src]

pub struct TransactionPayload { /* fields omitted */ }

A transaction to move funds.

Implementations

impl TransactionPayload[src]

pub const KIND: u32[src]

The payload kind of a TransactionPayload.

pub fn builder() -> TransactionPayloadBuilder[src]

Return a new TransactionPayloadBuilder to build a TransactionPayload.

pub fn id(&self) -> TransactionId[src]

Computes the identifier of a TransactionPayload.

pub fn essence(&self) -> &Essence[src]

Return the essence of a TransactionPayload.

pub fn unlock_blocks(&self) -> &UnlockBlocks[src]

Return unlock blocks of a TransactionPayload.

Trait Implementations

impl Clone for TransactionPayload[src]

impl Debug for TransactionPayload[src]

impl Eq for TransactionPayload[src]

impl From<TransactionPayload> for Payload[src]

impl Packable for TransactionPayload[src]

type Error = Error

Associated error type.

impl PartialEq<TransactionPayload> for TransactionPayload[src]

impl StructuralEq for TransactionPayload[src]

impl StructuralPartialEq for TransactionPayload[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.