pub trait Result64: Result { // Required methods fn try_i64(&self) -> Result<i64, Error>; fn try_u64(&self) -> Result<u64, Error>; }
Interpret a syscall result as a 64-bit integer.