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