Struct bee_ledger::types::LedgerIndex [−][src]
pub struct LedgerIndex(pub MilestoneIndex);
Expand description
A wrapper type to represent the current ledger index.
Implementations
impl LedgerIndex[src]
impl LedgerIndex[src]pub fn new(index: MilestoneIndex) -> Self[src]
pub fn new(index: MilestoneIndex) -> Self[src]Creates a new LedgerIndex.
Methods from Deref<Target = u32>
Trait Implementations
impl Clone for LedgerIndex[src]
impl Clone for LedgerIndex[src]fn clone(&self) -> LedgerIndex[src]
fn clone(&self) -> LedgerIndex[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 LedgerIndex[src]
impl Debug for LedgerIndex[src]impl Default for LedgerIndex[src]
impl Default for LedgerIndex[src]fn default() -> LedgerIndex[src]
fn default() -> LedgerIndex[src]Returns the “default value” for a type. Read more
impl Deref for LedgerIndex[src]
impl Deref for LedgerIndex[src]impl From<MilestoneIndex> for LedgerIndex[src]
impl From<MilestoneIndex> for LedgerIndex[src]fn from(index: MilestoneIndex) -> Self[src]
fn from(index: MilestoneIndex) -> Self[src]Performs the conversion.
impl Hash for LedgerIndex[src]
impl Hash for LedgerIndex[src]impl Ord for LedgerIndex[src]
impl Ord for LedgerIndex[src]impl Packable for LedgerIndex[src]
impl Packable for LedgerIndex[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<LedgerIndex> for LedgerIndex[src]
impl PartialEq<LedgerIndex> for LedgerIndex[src]fn eq(&self, other: &LedgerIndex) -> bool[src]
fn eq(&self, other: &LedgerIndex) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &LedgerIndex) -> bool[src]
fn ne(&self, other: &LedgerIndex) -> bool[src]This method tests for !=.
impl PartialOrd<LedgerIndex> for LedgerIndex[src]
impl PartialOrd<LedgerIndex> for LedgerIndex[src]fn partial_cmp(&self, other: &LedgerIndex) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &LedgerIndex) -> 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 LedgerIndex[src]
impl Eq for LedgerIndex[src]
impl StructuralEq for LedgerIndex[src]
impl StructuralPartialEq for LedgerIndex[src]
Auto Trait Implementations
impl RefUnwindSafe for LedgerIndex
impl Send for LedgerIndex
impl Sync for LedgerIndex
impl Unpin for LedgerIndex
impl UnwindSafe for LedgerIndex
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