Trait static_reflect::PrimInt[][src]

pub unsafe trait PrimInt: StaticReflect + Copy + Add<Self> + Sub<Self> + Mul<Self> + Sealed {
    const INT_TYPE: IntType;
    const SIGNED: bool;
    const INT_SIZE: IntSize;
}
Expand description

A primitive integer type

Associated Constants

The IntType of this integer

Whether or not this integer is signed

The size of this integer

If this integer is pointer-sized (isize/usize), then this will be its runtime size on the current platform.

Implementations on Foreign Types

Implementors