Rust Types
- Integers: i8, i16, i32, i64, i128. isize (on 32 bit machines this 32 bit, on 64 bit machines this is 64 bit).
- Unsigned integers u8, u16, u32, u64, u128, usize.
- Floating point: f32, f64.
- minimum and maximum values of numeric types
- size of integers in Python
- unit ()
- Boolean: bool: (true, false).
- Char: char
- String: str
- String
- Array
- Vector
- HashMap
- Struct
- Enum
- List of Rusts primitive types