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