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