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