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