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