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