Struct bee_message::payload::transaction::TransactionId [−][src]
pub struct TransactionId(_);
Expand description
A transaction identifier, the BLAKE2b-256 hash of the transaction bytes. See https://www.blake2.net/ for more information.
Implementations
Trait Implementations
impl Clone for TransactionId[src]
impl Clone for TransactionId[src]fn clone(&self) -> TransactionId[src]
fn clone(&self) -> TransactionId[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for TransactionId[src]
impl Debug for TransactionId[src]impl Display for TransactionId[src]
impl Display for TransactionId[src]impl FromStr for TransactionId[src]
impl FromStr for TransactionId[src]impl Hash for TransactionId[src]
impl Hash for TransactionId[src]impl Ord for TransactionId[src]
impl Ord for TransactionId[src]impl Packable for TransactionId[src]
impl Packable for TransactionId[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 PartialEq<TransactionId> for TransactionId[src]
impl PartialEq<TransactionId> for TransactionId[src]fn eq(&self, other: &TransactionId) -> bool[src]
fn eq(&self, other: &TransactionId) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &TransactionId) -> bool[src]
fn ne(&self, other: &TransactionId) -> bool[src]This method tests for !=.
impl PartialOrd<TransactionId> for TransactionId[src]
impl PartialOrd<TransactionId> for TransactionId[src]fn partial_cmp(&self, other: &TransactionId) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &TransactionId) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for TransactionId[src]
impl Eq for TransactionId[src]
impl StructuralEq for TransactionId[src]
impl StructuralPartialEq for TransactionId[src]
Auto Trait Implementations
impl RefUnwindSafe for TransactionId
impl Send for TransactionId
impl Sync for TransactionId
impl Unpin for TransactionId
impl UnwindSafe for TransactionId
Blanket Implementations
impl<T> Base32Len for T where
T: AsRef<[u8]>, [src]
impl<T> Base32Len for T where
T: AsRef<[u8]>, [src]pub fn base32_len(&self) -> usize[src]
pub fn base32_len(&self) -> usize[src]Calculate the base32 serialized length
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> ToBase32 for T where
T: AsRef<[u8]>, [src]
impl<T> ToBase32 for T where
T: AsRef<[u8]>, [src]pub fn write_base32<W>(
&self,
writer: &mut W
) -> Result<(), <W as WriteBase32>::Err> where
W: WriteBase32, [src]
pub fn write_base32<W>(
&self,
writer: &mut W
) -> Result<(), <W as WriteBase32>::Err> where
W: WriteBase32, [src]Encode as base32 and write it to the supplied writer Implementations shouldn’t allocate. Read more
impl<T> ToHex for T where
T: AsRef<[u8]>, [src]
impl<T> ToHex for T where
T: AsRef<[u8]>, [src]pub fn encode_hex<U>(&self) -> U where
U: FromIterator<char>, [src]
pub fn encode_hex<U>(&self) -> U where
U: FromIterator<char>, [src]Encode the hex strict representing self into the result. Lower case
letters are used (e.g. f9b4ca) Read more
pub fn encode_hex_upper<U>(&self) -> U where
U: FromIterator<char>, [src]
pub fn encode_hex_upper<U>(&self) -> U where
U: FromIterator<char>, [src]Encode the hex strict representing self into the result. Upper case
letters are used (e.g. F9B4CA) Read more
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