pub type ContactsResponse<C> = Result<Vec<Contact>, <C as ClientApi>::Error>;
pub enum ContactsResponse<C> { Ok(Vec<Contact>), Err(<C as ClientApi>::Error), }
Contains the success value
Contains the error value