Struct bee_message::milestone::MilestoneIndex [−][src]
#[repr(transparent)]pub struct MilestoneIndex(pub u32);
Expand description
A wrapper around a u32 that represents a milestone index.
Implementations
impl MilestoneIndex[src]
impl MilestoneIndex[src]Methods from Deref<Target = u32>
pub const MIN: u321.43.0[src]
pub const MAX: u321.43.0[src]
pub const BITS: u321.53.0[src]
pub fn as_ne_bytes(&self) -> &[u8; 4][src]
🔬 This is a nightly-only experimental API. (num_as_ne_bytes)
pub fn as_ne_bytes(&self) -> &[u8; 4][src]num_as_ne_bytes)Return the memory representation of this integer as a byte array in native byte order.
to_ne_bytes should be preferred over this whenever possible.
Examples
#![feature(num_as_ne_bytes)] let num = 0x12345678u32; let bytes = num.as_ne_bytes(); assert_eq!( bytes, if cfg!(target_endian = "big") { &[0x12, 0x34, 0x56, 0x78] } else { &[0x78, 0x56, 0x34, 0x12] } );
Trait Implementations
impl Add<MilestoneIndex> for MilestoneIndex[src]
impl Add<MilestoneIndex> for MilestoneIndex[src]impl Add<u32> for MilestoneIndex[src]
impl Add<u32> for MilestoneIndex[src]impl Clone for MilestoneIndex[src]
impl Clone for MilestoneIndex[src]fn clone(&self) -> MilestoneIndex[src]
fn clone(&self) -> MilestoneIndex[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 MilestoneIndex[src]
impl Debug for MilestoneIndex[src]impl Default for MilestoneIndex[src]
impl Default for MilestoneIndex[src]fn default() -> MilestoneIndex[src]
fn default() -> MilestoneIndex[src]Returns the “default value” for a type. Read more
impl Deref for MilestoneIndex[src]
impl Deref for MilestoneIndex[src]impl Display for MilestoneIndex[src]
impl Display for MilestoneIndex[src]impl Hash for MilestoneIndex[src]
impl Hash for MilestoneIndex[src]impl Ord for MilestoneIndex[src]
impl Ord for MilestoneIndex[src]impl Packable for MilestoneIndex[src]
impl Packable for MilestoneIndex[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<MilestoneIndex> for MilestoneIndex[src]
impl PartialEq<MilestoneIndex> for MilestoneIndex[src]fn eq(&self, other: &MilestoneIndex) -> bool[src]
fn eq(&self, other: &MilestoneIndex) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &MilestoneIndex) -> bool[src]
fn ne(&self, other: &MilestoneIndex) -> bool[src]This method tests for !=.
impl PartialOrd<MilestoneIndex> for MilestoneIndex[src]
impl PartialOrd<MilestoneIndex> for MilestoneIndex[src]fn partial_cmp(&self, other: &MilestoneIndex) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &MilestoneIndex) -> 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 Sub<MilestoneIndex> for MilestoneIndex[src]
impl Sub<MilestoneIndex> for MilestoneIndex[src]impl Sub<u32> for MilestoneIndex[src]
impl Sub<u32> for MilestoneIndex[src]impl Copy for MilestoneIndex[src]
impl Eq for MilestoneIndex[src]
impl StructuralEq for MilestoneIndex[src]
impl StructuralPartialEq for MilestoneIndex[src]
Auto Trait Implementations
impl RefUnwindSafe for MilestoneIndex
impl Send for MilestoneIndex
impl Sync for MilestoneIndex
impl Unpin for MilestoneIndex
impl UnwindSafe for MilestoneIndex
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