template <>
class WireTableBuilder
Defined at line 3000 of file fidling/gen/sdk/fidl/fuchsia.feedback/fuchsia.feedback/cpp/fidl/fuchsia.feedback/cpp/wire_types.h
Public Methods
template <typename First = ::fidl::StringView, typename... Args, std::enable_if_t<!std::is_same_v<cpp20::remove_cvref_t<First>, fidl::ObjectView<::fidl::StringView>>, int> = 0>
::fidl::WireTableBuilder< ::fuchsia_feedback::wire::ComponentData> & namespace_ (First && first, Args &&... args_)
The top-level namespace associated with the data:
* Is intended to group related data together and reduce data key collisions across
namespaces.
* May be shared by multiple clients, e.g., there could be multiple clients within the same
component or across components that want to expose related data and they would all use
the same namespace.
* Will be prefixed to every data key passed within that namespace in all feedback reports,
e.g., the annotation "version" would appear as "foo.version" in all feedback reports if
the namespace is "foo".
* Must match [a-z
\
-]+, i.e. only lowercase letters and hyphens or this will result in a
ZX_ERR_INVALID_ARGS epitaph.
* Must not match a reserved namespace used internally for platform data, e.g., "build", or
this will result in a ZX_ERR_INVALID_ARGS epitaph. The list of reserved namespaces is
internal and subject to change for now.
Defined at line 3026 of file fidling/gen/sdk/fidl/fuchsia.feedback/fuchsia.feedback/cpp/fidl/fuchsia.feedback/cpp/wire_types.h
template <typename First = ::fidl::VectorView<::fuchsia_feedback::wire::Annotation>, typename... Args, std::enable_if_t<!std::is_same_v<cpp20::remove_cvref_t<First>, fidl::ObjectView<::fidl::VectorView<::fuchsia_feedback::wire::Annotation>>>, int> = 0>
::fidl::WireTableBuilder< ::fuchsia_feedback::wire::ComponentData> & annotations (First && first, Args &&... args_)
A vector of key-value string pairs, e.g., `
<
"version", "1.2.3.45">`.
Keys:
* Should be unique as only the latest value for a given key in the vector will be
considered.
* Must match [a-z
\
-
.
]+, i.e. only lowercase letters, hyphens and periods. Use periods for
sub-namespacing, e.g., "build.label" and "build.type", so that related annotations are
grouped together (here related to "build") when sorted lexicographically.
Defined at line 3046 of file fidling/gen/sdk/fidl/fuchsia.feedback/fuchsia.feedback/cpp/fidl/fuchsia.feedback/cpp/wire_types.h
Friends
template <>
class ComponentData