libc/
fixed_width_ints.rs

1//! This module contains type aliases for C's fixed-width integer types .
2//!
3//! These aliases are deprecated: use the Rust types instead.
4
5#[deprecated(since = "0.2.55", note = "Use i8 instead.")]
6pub type int8_t = i8;
7#[deprecated(since = "0.2.55", note = "Use i16 instead.")]
8pub type int16_t = i16;
9#[deprecated(since = "0.2.55", note = "Use i32 instead.")]
10pub type int32_t = i32;
11#[deprecated(since = "0.2.55", note = "Use i64 instead.")]
12pub type int64_t = i64;
13#[deprecated(since = "0.2.55", note = "Use u8 instead.")]
14pub type uint8_t = u8;
15#[deprecated(since = "0.2.55", note = "Use u16 instead.")]
16pub type uint16_t = u16;
17#[deprecated(since = "0.2.55", note = "Use u32 instead.")]
18pub type uint32_t = u32;
19#[deprecated(since = "0.2.55", note = "Use u64 instead.")]
20pub type uint64_t = u64;