#include "components/autofill/core/browser/data_model/payment_instrument.h"
namespace autofill {
std::strong_ordering operator<=>(const PaymentInstrument& a,
const PaymentInstrument& b) = default;
bool operator==(const PaymentInstrument& a,
const PaymentInstrument& b) = default;
PaymentInstrument::PaymentInstrument(
int64_t instrument_id,
std::u16string nickname,
GURL display_icon_url,
DenseSet<PaymentInstrument::PaymentRail> supported_rails)
: … { … }
PaymentInstrument::PaymentInstrument(
const PaymentInstrument& payment_instrument) = default;
PaymentInstrument& PaymentInstrument::operator=(
const PaymentInstrument& other) = default;
PaymentInstrument::~PaymentInstrument() = default;
bool PaymentInstrument::IsSupported(PaymentRail payment_rail) const { … }
}