Enum bee_message::payload::Payload [−][src]
pub enum Payload {
Transaction(Box<TransactionPayload>),
Milestone(Box<MilestonePayload>),
Indexation(Box<IndexationPayload>),
Receipt(Box<ReceiptPayload>),
TreasuryTransaction(Box<TreasuryTransactionPayload>),
}Expand description
A generic payload that can represent different types defining message payloads.
Variants
Transaction(Box<TransactionPayload>)Expand description
A transaction payload.
Milestone(Box<MilestonePayload>)Expand description
A milestone payload.
Indexation(Box<IndexationPayload>)Expand description
An indexation payload.
Receipt(Box<ReceiptPayload>)Expand description
A receipt payload.
TreasuryTransaction(Box<TreasuryTransactionPayload>)Expand description
A treasury transaction payload.
Implementations
Trait Implementations
impl From<IndexationPayload> for Payload[src]
impl From<IndexationPayload> for Payload[src]fn from(payload: IndexationPayload) -> Self[src]
fn from(payload: IndexationPayload) -> Self[src]Performs the conversion.
impl From<MilestonePayload> for Payload[src]
impl From<MilestonePayload> for Payload[src]fn from(payload: MilestonePayload) -> Self[src]
fn from(payload: MilestonePayload) -> Self[src]Performs the conversion.
impl From<ReceiptPayload> for Payload[src]
impl From<ReceiptPayload> for Payload[src]fn from(payload: ReceiptPayload) -> Self[src]
fn from(payload: ReceiptPayload) -> Self[src]Performs the conversion.
impl From<TransactionPayload> for Payload[src]
impl From<TransactionPayload> for Payload[src]fn from(payload: TransactionPayload) -> Self[src]
fn from(payload: TransactionPayload) -> Self[src]Performs the conversion.
impl From<TreasuryTransactionPayload> for Payload[src]
impl From<TreasuryTransactionPayload> for Payload[src]fn from(payload: TreasuryTransactionPayload) -> Self[src]
fn from(payload: TreasuryTransactionPayload) -> Self[src]Performs the conversion.
impl Packable for Payload[src]
impl Packable for Payload[src]fn packed_len(&self) -> usize[src]
fn packed_len(&self) -> usize[src]Returns the length of the packed bytes.
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>[src]
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>[src]Packs the instance to bytes and writes them to the passed writer.
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(
reader: &mut R
) -> Result<Self, Self::Error>[src]
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(
reader: &mut R
) -> Result<Self, Self::Error>[src]Reads bytes from the passed reader and unpacks them into an instance.
fn pack_new(&self) -> Vec<u8, Global>[src]
fn pack_new(&self) -> Vec<u8, Global>[src]Packs the instance to bytes and writes them to a newly allocated vector.
impl Eq for Payload[src]
impl StructuralEq for Payload[src]
impl StructuralPartialEq for Payload[src]
Auto Trait Implementations
impl RefUnwindSafe for Payload
impl Send for Payload
impl Sync for Payload
impl Unpin for Payload
impl UnwindSafe for Payload
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more