blob: 0199bdc80d2b448c629a7b3b66ce92c391799ffa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef ICU4XDisplayNamesStyle_HPP
#define ICU4XDisplayNamesStyle_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"
#include "ICU4XDisplayNamesStyle.h"
/**
* See the [Rust documentation for `Style`](https://docs.rs/icu/latest/icu/displaynames/options/enum.Style.html) for more information.
*/
enum struct ICU4XDisplayNamesStyle {
Auto = 0,
Narrow = 1,
Short = 2,
Long = 3,
Menu = 4,
};
#endif
|