pub enum Payload {
Transaction(Box<TransactionPayload>),
Milestone(Box<MilestonePayload>),
TreasuryTransaction(Box<TreasuryTransactionPayload>),
TaggedData(Box<TaggedDataPayload>),
}Expand description
A generic payload that can represent different types defining block payloads.
Variants
Transaction(Box<TransactionPayload>)
A transaction payload.
Milestone(Box<MilestonePayload>)
A milestone payload.
TreasuryTransaction(Box<TreasuryTransactionPayload>)
A treasury transaction payload.
TaggedData(Box<TaggedDataPayload>)
A tagged data payload.
Implementations
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Payload
impl<'de> Deserialize<'de> for Payload
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<&Payload> for PayloadDto
impl From<&Payload> for PayloadDto
sourceimpl From<MilestonePayload> for Payload
impl From<MilestonePayload> for Payload
sourcefn from(payload: MilestonePayload) -> Self
fn from(payload: MilestonePayload) -> Self
Converts to this type from the input type.
sourceimpl From<TaggedDataPayload> for Payload
impl From<TaggedDataPayload> for Payload
sourcefn from(payload: TaggedDataPayload) -> Self
fn from(payload: TaggedDataPayload) -> Self
Converts to this type from the input type.
sourceimpl From<TransactionPayload> for Payload
impl From<TransactionPayload> for Payload
sourcefn from(payload: TransactionPayload) -> Self
fn from(payload: TransactionPayload) -> Self
Converts to this type from the input type.
sourceimpl From<TreasuryTransactionPayload> for Payload
impl From<TreasuryTransactionPayload> for Payload
sourcefn from(payload: TreasuryTransactionPayload) -> Self
fn from(payload: TreasuryTransactionPayload) -> Self
Converts to this type from the input type.
sourceimpl Packable for Payload
impl Packable for Payload
sourceimpl TryFrom<&PayloadDto> for Payload
impl TryFrom<&PayloadDto> for Payload
impl Eq for Payload
impl StructuralEq for Payload
impl StructuralPartialEq for Payload
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<P> PackableExt for P where
P: Packable,
impl<P> PackableExt for P where
P: Packable,
sourcefn unpack_verified<T>(
bytes: T
) -> Result<P, UnpackError<<P as Packable>::UnpackError, UnexpectedEOF>> where
T: AsRef<[u8]>,
fn unpack_verified<T>(
bytes: T
) -> Result<P, UnpackError<<P as Packable>::UnpackError, UnexpectedEOF>> where
T: AsRef<[u8]>,
Unpacks this value from a type that implements [AsRef<[u8]>].
sourcefn unpack_unverified<T>(
bytes: T
) -> Result<P, UnpackError<<P as Packable>::UnpackError, UnexpectedEOF>> where
T: AsRef<[u8]>,
fn unpack_unverified<T>(
bytes: T
) -> Result<P, UnpackError<<P as Packable>::UnpackError, UnexpectedEOF>> where
T: AsRef<[u8]>,
Unpacks this value from a type that implements [AsRef<[u8]>] skipping some syntatical checks.
sourcefn packed_len(&self) -> usize
fn packed_len(&self) -> usize
Returns the length in bytes of the value after being packed. The returned value always matches the number of
bytes written using pack. Read more