Crate stdint
Source - consts
- Constants for the types exported by this crate.
- int8_t
- Signed integer type with width of exactly 8 bits.
- int16_t
- Signed integer type with width of exactly 16 bits.
- int32_t
- Signed integer type with width of exactly 32 bits.
- int64_t
- Signed integer type with width of exactly 64 bits.
- int_fast8_t
- Fastest signed integer type with width of at least 8 bits.
- int_fast16_t
- Fastest signed integer type with width of at least 16 bits.
- int_fast32_t
- Fastest signed integer type with width of at least 32 bits.
- int_fast64_t
- Fastest signed integer type with width of at least 64 bits.
- int_least8_t
- Smallest signed integer type with width of at least 8 bits.
- int_least16_t
- Smallest signed integer type with width of at least 16 bits.
- int_least32_t
- Smallest signed integer type with width of at least 32 bits.
- int_least64_t
- Smallest signed integer type with width of at least 64 bits.
- intmax_t
- Maximum-width signed integer type.
- intptr_t
- Signed integer type capable of holding a pointer to
std::ffi::c_void
or core::ffi::c_void
. - size_t
- The unsigned integer type of the result of the
sizeof
operator. - ssize_t
- Used for a count of bytes or an error indication.
- uint8_t
- Unsigned integer type with width of exactly 8 bits.
- uint16_t
- Unsigned integer type with width of exactly 16 bits.
- uint32_t
- Unsigned integer type with width of exactly 32 bits.
- uint64_t
- Unsigned integer type with width of exactly 64 bits.
- uint_fast8_t
- Fastest unsigned integer type with width of at least 8 bits.
- uint_fast16_t
- Fastest unsigned integer type with width of at least 16 bits.
- uint_fast32_t
- Fastest unsigned integer type with width of at least 32 bits.
- uint_fast64_t
- Fastest unsigned integer type with width of at least 64 bits.
- uint_least8_t
- Smallest unsigned integer type with width of at least 8 bits.
- uint_least16_t
- Smallest unsigned integer type with width of at least 16 bits.
- uint_least32_t
- Smallest unsigned integer type with width of at least 32 bits.
- uint_least64_t
- Smallest unsigned integer type with width of at least 64 bits.
- uintmax_t
- Maximum-width unsigned integer type.
- uintptr_t
- Unsigned integer type capable of holding a pointer to
std::ffi::c_void
or core::ffi::c_void
.