Struct bee_message::MessageId [−][src]
pub struct MessageId(_);
Expand description
A message identifier, the BLAKE2b-256 hash of the message bytes. See https://www.blake2.net/ for more information.
Implementations
Trait Implementations
impl Ord for MessageId[src]
impl Ord for MessageId[src]impl Packable for MessageId[src]
impl Packable for MessageId[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 PartialOrd<MessageId> for MessageId[src]
impl PartialOrd<MessageId> for MessageId[src]fn partial_cmp(&self, other: &MessageId) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &MessageId) -> 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 MessageId[src]
impl Eq for MessageId[src]
impl StructuralEq for MessageId[src]
impl StructuralPartialEq for MessageId[src]
Auto Trait Implementations
impl RefUnwindSafe for MessageId
impl Send for MessageId
impl Sync for MessageId
impl Unpin for MessageId
impl UnwindSafe for MessageId
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