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