Trait libp2p::multihash::typenum::int::Integer[][src]

pub trait Integer {
    pub const I8: i8;
    pub const I16: i16;
    pub const I32: i32;
    pub const I64: i64;
    pub const ISIZE: isize;

    pub fn to_i8() -> i8;
pub fn to_i16() -> i16;
pub fn to_i32() -> i32;
pub fn to_i64() -> i64;
pub fn to_isize() -> isize; }

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]

Loading content...

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]

Loading content...

Implementors

impl Integer for Z0[src]

impl<U> Integer for NInt<U> where
    U: Unsigned + NonZero
[src]

impl<U> Integer for PInt<U> where
    U: Unsigned + NonZero
[src]

Loading content...