> <@fly:asra.gr> I need to convert u16 to i8 but it says its not implemented, I've found this crate: https://crates.io/crates/checked_int_cast which seems to do what I want but it doesn't build, presumably cause it uses std... any idea how to get that cast working? * That's a pretty lossy conversion. Obligatory "are you sure that the u16 number will always fit inside an i8 one?" The max values between those two types are quite different. u16: <= 65535 i8: <= ~256