Trait libp2p::multihash::typenum::int::Integer [−][src]
The marker trait for compile time signed integers.
This trait should not be implemented for anything outside this crate.
Example
use typenum::{P3, Integer}; assert_eq!(P3::to_i32(), 3); assert_eq!(P3::I32, 3);
Associated Constants
pub const I8: i8[src]
pub const I16: i16[src]
pub const I32: i32[src]
pub const I64: i64[src]
pub const ISIZE: isize[src]
Required methods
pub fn to_i8() -> i8[src]
pub fn to_i16() -> i16[src]
pub fn to_i32() -> i32[src]
pub fn to_i64() -> i64[src]
pub fn to_isize() -> isize[src]
Implementors
impl Integer for Z0[src]
pub const I8: i8[src]
pub const I16: i16[src]
pub const I32: i32[src]
pub const I64: i64[src]
pub const ISIZE: isize[src]
pub fn to_i8() -> i8[src]
pub fn to_i16() -> i16[src]
pub fn to_i32() -> i32[src]
pub fn to_i64() -> i64[src]
pub fn to_isize() -> isize[src]
impl<U> Integer for NInt<U> where
U: Unsigned + NonZero, [src]
U: Unsigned + NonZero,
pub const I8: i8[src]
pub const I16: i16[src]
pub const I32: i32[src]
pub const I64: i64[src]
pub const ISIZE: isize[src]
pub fn to_i8() -> i8[src]
pub fn to_i16() -> i16[src]
pub fn to_i32() -> i32[src]
pub fn to_i64() -> i64[src]
pub fn to_isize() -> isize[src]
impl<U> Integer for PInt<U> where
U: Unsigned + NonZero, [src]
U: Unsigned + NonZero,