Added: 7
STRUCTS
DictionaryEntry
Defined in fuchsia.data/data.fidl
A key/value pair in a Dictionary
.
Field | Type | Description | Default |
---|---|---|---|
key |
string:1024
|
No default | |
value |
DictionaryValue?
|
No default |
TABLES
Dictionary
Defined in fuchsia.data/data.fidl
A dictionary is a sequence of key/value pairs. Keys must be unique and sorted in lexicographically increasing order.
Ordinal | Field | Type | Description |
---|---|---|---|
1 |
entries |
vector<DictionaryEntry>:1024
|
UNIONS
DictionaryValue flexible
Defined in fuchsia.data/data.fidl
A dictionary's value is a string, a list of strings, or a list of objects.
Ordinal | Variant | Type | Description |
---|---|---|---|
1 |
str |
string:32768
|
|
2 |
str_vec |
vector<string:32768>:1024
|
|
3 |
obj_vec |
vector<Dictionary>:1024
|
CONSTANTS
Name | Value | Type | Description |
---|---|---|---|
MAX_KEY_LENGTH |
1024
|
uint32 |
|
MAX_NUM_ENTRIES |
1024
|
uint32 |
|
MAX_NUM_VALUE_ITEMS |
1024
|
uint32 |
|
MAX_VALUE_LENGTH |
32768
|
uint32 |
Added: 14
|