Struct bee_message::output::SignatureLockedSingleOutput
source · pub struct SignatureLockedSingleOutput { /* private fields */ }Expand description
An output type which can be unlocked via a signature. It deposits onto one single address.
Implementations§
Trait Implementations§
source§impl Clone for SignatureLockedSingleOutput
impl Clone for SignatureLockedSingleOutput
source§fn clone(&self) -> SignatureLockedSingleOutput
fn clone(&self) -> SignatureLockedSingleOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SignatureLockedSingleOutput
impl Debug for SignatureLockedSingleOutput
source§impl From<SignatureLockedSingleOutput> for Output
impl From<SignatureLockedSingleOutput> for Output
source§fn from(output: SignatureLockedSingleOutput) -> Self
fn from(output: SignatureLockedSingleOutput) -> Self
Converts to this type from the input type.
source§impl Ord for SignatureLockedSingleOutput
impl Ord for SignatureLockedSingleOutput
source§fn cmp(&self, other: &SignatureLockedSingleOutput) -> Ordering
fn cmp(&self, other: &SignatureLockedSingleOutput) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl Packable for SignatureLockedSingleOutput
impl Packable for SignatureLockedSingleOutput
source§fn packed_len(&self) -> usize
fn packed_len(&self) -> usize
Returns the length of the packed bytes.
source§fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>
fn pack<W: Write>(&self, writer: &mut W) -> Result<(), Self::Error>
Packs the instance to bytes and writes them to the passed writer.
source§fn unpack_inner<R: Read + ?Sized, const CHECK: bool>(
reader: &mut R
) -> Result<Self, Self::Error>
fn unpack_inner<R: Read + ?Sized, const CHECK: bool>( reader: &mut R ) -> Result<Self, Self::Error>
Reads bytes from the passed reader and unpacks them into an instance.
source§fn pack_new(&self) -> Vec<u8, Global>
fn pack_new(&self) -> Vec<u8, Global>
Packs the instance to bytes and writes them to a newly allocated vector.
source§impl PartialEq<SignatureLockedSingleOutput> for SignatureLockedSingleOutput
impl PartialEq<SignatureLockedSingleOutput> for SignatureLockedSingleOutput
source§fn eq(&self, other: &SignatureLockedSingleOutput) -> bool
fn eq(&self, other: &SignatureLockedSingleOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<SignatureLockedSingleOutput> for SignatureLockedSingleOutput
impl PartialOrd<SignatureLockedSingleOutput> for SignatureLockedSingleOutput
source§fn partial_cmp(&self, other: &SignatureLockedSingleOutput) -> Option<Ordering>
fn partial_cmp(&self, other: &SignatureLockedSingleOutput) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more