pub type FileSeekResult = Result<u64, i32>;
enum FileSeekResult { Ok(u64), Err(i32), }
Contains the success value
Contains the error value