pub trait Result32: Result { // Required methods fn try_i32(&self) -> Result<i32, Error>; fn try_u32(&self) -> Result<u32, Error>; }
Interpret a syscall result as a 32-bit integer.