Trait checked_rs::UIntegerLimits

source ·
pub trait UIntegerLimits {
    const MIN: u128;
    const MAX: u128;
}

Required Associated Constants§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl UIntegerLimits for u8

source§

const MAX: u128 = 255u128

source§

const MIN: u128 = 0u128

source§

impl UIntegerLimits for u16

source§

const MAX: u128 = 65_535u128

source§

const MIN: u128 = 0u128

source§

impl UIntegerLimits for u32

source§

const MAX: u128 = 4_294_967_295u128

source§

const MIN: u128 = 0u128

source§

impl UIntegerLimits for u64

source§

const MAX: u128 = 18_446_744_073_709_551_615u128

source§

const MIN: u128 = 0u128

source§

impl UIntegerLimits for u128

source§

const MAX: u128 = 340_282_366_920_938_463_463_374_607_431_768_211_455u128

source§

const MIN: u128 = 0u128

Implementors§