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