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
. -
unit
()
-
Boolean:
bool
: (true
,false
). -
Char:
char
-
String:
str
-
String
-
Array
-
Vector
-
HashMap
-
Struct
-
Enum
-
List of Rusts primitive types