pub struct PropertyCount(/* private fields */);Implementations§
Source§impl PropertyCount
impl PropertyCount
pub fn into_usize(self) -> usize
Trait Implementations§
Source§impl Add<PropertyCount> for PropertyIdx
impl Add<PropertyCount> for PropertyIdx
Source§type Output = PropertyIdx
type Output = PropertyIdx
The resulting type after applying the
+ operator.Source§impl Add<u8> for PropertyCount
impl Add<u8> for PropertyCount
Source§impl AddAssign<PropertyCount> for PropertyIdx
impl AddAssign<PropertyCount> for PropertyIdx
Source§fn add_assign(&mut self, rhs: PropertyCount)
fn add_assign(&mut self, rhs: PropertyCount)
Performs the
+= operation. Read moreSource§impl AddAssign<u8> for PropertyCount
impl AddAssign<u8> for PropertyCount
Source§fn add_assign(&mut self, rhs: u8)
fn add_assign(&mut self, rhs: u8)
Performs the
+= operation. Read moreSource§impl Clone for PropertyCount
impl Clone for PropertyCount
Source§fn clone(&self) -> PropertyCount
fn clone(&self) -> PropertyCount
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 PropertyCount
Source§impl Debug for PropertyCount
impl Debug for PropertyCount
Source§impl Deref for PropertyCount
impl Deref for PropertyCount
Source§impl Display for PropertyCount
impl Display for PropertyCount
Source§impl Div<u8> for PropertyCount
impl Div<u8> for PropertyCount
impl Eq for PropertyCount
Source§impl From<PropertyCount> for u64
impl From<PropertyCount> for u64
Source§fn from(i: PropertyCount) -> u64
fn from(i: PropertyCount) -> u64
Converts to this type from the input type.
Source§impl From<PropertyCount> for u32
impl From<PropertyCount> for u32
Source§fn from(i: PropertyCount) -> u32
fn from(i: PropertyCount) -> u32
Converts to this type from the input type.
Source§impl From<PropertyCount> for u16
impl From<PropertyCount> for u16
Source§fn from(i: PropertyCount) -> u16
fn from(i: PropertyCount) -> u16
Converts to this type from the input type.
Source§impl From<PropertyCount> for u8
impl From<PropertyCount> for u8
Source§fn from(i: PropertyCount) -> u8
fn from(i: PropertyCount) -> u8
Converts to this type from the input type.
Source§impl From<u8> for PropertyCount
impl From<u8> for PropertyCount
Source§impl IntoIterator for PropertyCount
impl IntoIterator for PropertyCount
Source§impl Mul<Size> for PropertyCount
impl Mul<Size> for PropertyCount
Source§impl Not for PropertyCount
impl Not for PropertyCount
Source§impl PartialEq for PropertyCount
impl PartialEq for PropertyCount
impl StructuralPartialEq for PropertyCount
Auto Trait Implementations§
impl Freeze for PropertyCount
impl RefUnwindSafe for PropertyCount
impl Send for PropertyCount
impl Sync for PropertyCount
impl Unpin for PropertyCount
impl UnsafeUnpin for PropertyCount
impl UnwindSafe for PropertyCount
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