#include "components/user_education/common/feature_promo_result.h"
namespace user_education {
FeaturePromoResult::FeaturePromoResult(const FeaturePromoResult& other) =
default;
FeaturePromoResult& FeaturePromoResult::operator=(
const FeaturePromoResult& other) = default;
FeaturePromoResult& FeaturePromoResult::operator=(Failure failure) { … }
FeaturePromoResult::~FeaturePromoResult() = default;
FeaturePromoResult FeaturePromoResult::Success() { … }
std::ostream& operator<<(std::ostream& os,
FeaturePromoResult::Failure failure) { … }
std::ostream& operator<<(std::ostream& os, const FeaturePromoResult& result) { … }
}