#ifndef ICU4XDateLength_HPP #define ICU4XDateLength_HPP #include #include #include #include #include #include #include #include "diplomat_runtime.hpp" #include "ICU4XDateLength.h" /** * See the [Rust documentation for `Date`](https://docs.rs/icu/latest/icu/datetime/options/length/enum.Date.html) for more information. */ enum struct ICU4XDateLength { Full = 0, Long = 1, Medium = 2, Short = 3, }; #endif