pub struct EntryCount(/* private fields */);Implementations§
Source§impl EntryCount
impl EntryCount
pub fn into_usize(self) -> usize
Trait Implementations§
Source§impl Add<EntryCount> for EntryIdx
impl Add<EntryCount> for EntryIdx
Source§impl Add<u32> for EntryCount
impl Add<u32> for EntryCount
Source§impl AddAssign<EntryCount> for EntryIdx
impl AddAssign<EntryCount> for EntryIdx
Source§fn add_assign(&mut self, rhs: EntryCount)
fn add_assign(&mut self, rhs: EntryCount)
Performs the
+= operation. Read moreSource§impl AddAssign<u32> for EntryCount
impl AddAssign<u32> for EntryCount
Source§fn add_assign(&mut self, rhs: u32)
fn add_assign(&mut self, rhs: u32)
Performs the
+= operation. Read moreSource§impl Clone for EntryCount
impl Clone for EntryCount
Source§fn clone(&self) -> EntryCount
fn clone(&self) -> EntryCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EntryCount
Source§impl Debug for EntryCount
impl Debug for EntryCount
Source§impl Deref for EntryCount
impl Deref for EntryCount
Source§impl Display for EntryCount
impl Display for EntryCount
Source§impl Div<u32> for EntryCount
impl Div<u32> for EntryCount
impl Eq for EntryCount
Source§impl From<EntryCount> for u64
impl From<EntryCount> for u64
Source§fn from(i: EntryCount) -> u64
fn from(i: EntryCount) -> u64
Converts to this type from the input type.
Source§impl From<EntryCount> for u32
impl From<EntryCount> for u32
Source§fn from(i: EntryCount) -> u32
fn from(i: EntryCount) -> u32
Converts to this type from the input type.
Source§impl From<u32> for EntryCount
impl From<u32> for EntryCount
Source§impl IntoIterator for EntryCount
impl IntoIterator for EntryCount
Source§impl Mul<Size> for EntryCount
impl Mul<Size> for EntryCount
Source§impl Not for EntryCount
impl Not for EntryCount
Source§impl PartialEq for EntryCount
impl PartialEq for EntryCount
impl StructuralPartialEq for EntryCount
Auto Trait Implementations§
impl Freeze for EntryCount
impl RefUnwindSafe for EntryCount
impl Send for EntryCount
impl Sync for EntryCount
impl Unpin for EntryCount
impl UnsafeUnpin for EntryCount
impl UnwindSafe for EntryCount
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more