1#ifndef icu4x_LeadingAdjustment_D_HPP
2#define icu4x_LeadingAdjustment_D_HPP
17 enum LeadingAdjustment {
18 LeadingAdjustment_Auto = 0,
19 LeadingAdjustment_None = 1,
20 LeadingAdjustment_ToCased = 2,
23 typedef struct LeadingAdjustment_option {
union { LeadingAdjustment ok; };
bool is_ok; } LeadingAdjustment_option;
42 constexpr operator Value()
const {
return value; }
44 explicit operator bool()
const =
delete;
46 inline icu4x::capi::LeadingAdjustment AsFFI()
const;
Definition LeadingAdjustment.d.hpp:31
Value
Definition LeadingAdjustment.d.hpp:33
@ None
Definition LeadingAdjustment.d.hpp:35
@ ToCased
Definition LeadingAdjustment.d.hpp:36
@ Auto
Definition LeadingAdjustment.d.hpp:34
constexpr LeadingAdjustment(Value v)
Definition LeadingAdjustment.d.hpp:41
LeadingAdjustment()=default