Unsigned
num
0.1.42
Unsigned
Implementations on Foreign Types
Wrapping<T>
u128
u16
u32
u64
u8
usize
Object Safety
Implementors
In num::traits
Modules
bounds
cast
float
identities
int
ops
pow
real
sign
Structs
ParseFloatError
Enums
FloatErrorKind
Traits
AsPrimitive
Bounded
CheckedAdd
CheckedDiv
CheckedEuclid
CheckedMul
CheckedNeg
CheckedRem
CheckedShl
CheckedShr
CheckedSub
ConstOne
ConstZero
Euclid
Float
FloatConst
FromBytes
FromPrimitive
Inv
MulAdd
MulAddAssign
Num
NumAssign
NumAssignOps
NumAssignRef
NumCast
NumOps
NumRef
One
Pow
PrimInt
RefNum
Saturating
SaturatingAdd
SaturatingMul
SaturatingSub
Signed
ToBytes
ToPrimitive
Unsigned
WrappingAdd
WrappingMul
WrappingNeg
WrappingShl
WrappingShr
WrappingSub
Zero
Functions
abs
abs_sub
cast
checked_pow
clamp
clamp_max
clamp_min
one
pow
signum
zero
?
Settings
Trait
num
::
traits
::
Unsigned
Copy item path
source
·
[
−
]
pub trait Unsigned:
Num
{ }
Expand description
A trait for values which cannot be negative
Object Safety
§
This trait is
not
object safe
.
Implementations on Foreign Types
§
source
§
impl
Unsigned
for
u8
source
§
impl
Unsigned
for
u16
source
§
impl
Unsigned
for
u32
source
§
impl
Unsigned
for
u64
source
§
impl
Unsigned
for
u128
source
§
impl
Unsigned
for
usize
source
§
impl<T>
Unsigned
for
Wrapping
<T>
where T:
Unsigned
,
Wrapping
<T>:
Num
,
Implementors
§