128 bit integers are stable with Rust 1.26 and hence they could be added to the table below :
| Length |
Signed |
Unsigned |
| 8-bit |
i8 |
u8 |
| 16-bit |
i16 |
u16 |
| 32-bit |
i32 |
u32 |
| 64-bit |
i64 |
u64 |
| arch |
isize |
usize |
Ref : https://doc.rust-lang.org/std/u128/index.html
Relevant PR : rust-lang/rust#49101
Relevant section : https://doc.rust-lang.org/book/second-edition/ch03-02-data-types.html#integer-types
Thanks for the book.