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