Files
ansi_term
anyhow
atty
bcs
bincode
bitflags
clap
dtoa
glob
heck
include_dir
include_dir_impl
lazy_static
libc
linked_hash_map
maplit
once_cell
proc_macro2
proc_macro_error
proc_macro_error_attr
proc_macro_hack
quote
serde
serde_bytes
serde_derive
serde_generate
serde_name
serde_reflection
serde_yaml
serdegen
smawk
strsim
structopt
structopt_derive
syn
textwrap
thiserror
thiserror_impl
unicode_segmentation
unicode_width
unicode_xid
vec_map
yaml_rust
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! This module contains type aliases for C's fixed-width integer types .
//!
//! These aliases are deprecated: use the Rust types instead.

#[deprecated(since = "0.2.55", note = "Use i8 instead.")]
pub type int8_t = i8;
#[deprecated(since = "0.2.55", note = "Use i16 instead.")]
pub type int16_t = i16;
#[deprecated(since = "0.2.55", note = "Use i32 instead.")]
pub type int32_t = i32;
#[deprecated(since = "0.2.55", note = "Use i64 instead.")]
pub type int64_t = i64;
#[deprecated(since = "0.2.55", note = "Use u8 instead.")]
pub type uint8_t = u8;
#[deprecated(since = "0.2.55", note = "Use u16 instead.")]
pub type uint16_t = u16;
#[deprecated(since = "0.2.55", note = "Use u32 instead.")]
pub type uint32_t = u32;
#[deprecated(since = "0.2.55", note = "Use u64 instead.")]
pub type uint64_t = u64;