fuchsia.data

Added: 7

STRUCTS

DictionaryEntry

Defined in fuchsia.data/data.fidl

A key/value pair in a Dictionary.

FieldTypeDescriptionDefault
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.

OrdinalFieldTypeDescription
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.

OrdinalVariantTypeDescription
str string[32768]
str_vec vector<string>[1024]
obj_vec vector<Dictionary>[1024]

CONSTANTS

NameValueTypeDescription
MAX_KEY_LENGTH 1024 uint32
MAX_NUM_ENTRIES 1024 uint32
MAX_NUM_VALUE_ITEMS 1024 uint32
MAX_VALUE_LENGTH 32768 uint32
Added: 14