[−][src]Enum serde_hashkey::Integer
An opaque integer.
Variants
I8(i8)Variant representing a i8 integer.
I16(i16)Variant representing a i16 integer.
I32(i32)Variant representing a i32 integer.
I64(i64)Variant representing a i64 integer.
I128(i128)Variant representing a i128 integer.
U8(u8)Variant representing a u8 integer.
U16(u16)Variant representing a u16 integer.
U32(u32)Variant representing a u32 integer.
U64(u64)Variant representing a u64 integer.
U128(u128)Variant representing a u128 integer.
Trait Implementations
impl Clone for Integer[src]
impl Debug for Integer[src]
impl Eq for Integer[src]
impl Hash for Integer[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for Integer[src]
fn cmp(&self, other: &Integer) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Integer> for Integer[src]
impl PartialOrd<Integer> for Integer[src]
fn partial_cmp(&self, other: &Integer) -> Option<Ordering>[src]
fn lt(&self, other: &Integer) -> bool[src]
fn le(&self, other: &Integer) -> bool[src]
fn gt(&self, other: &Integer) -> bool[src]
fn ge(&self, other: &Integer) -> bool[src]
impl StructuralEq for Integer[src]
impl StructuralPartialEq for Integer[src]
Auto Trait Implementations
impl RefUnwindSafe for Integer
impl Send for Integer
impl Sync for Integer
impl Unpin for Integer
impl UnwindSafe for Integer
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,