6#include "../../datatypes/utf8.hpp"
7#include "../../result.hpp"
8#include "component_source_kind.hpp"
20namespace rerun::blueprint::datatypes {
46 std::optional<rerun::datatypes::Utf8>
selector;
61 "rerun.blueprint.datatypes.VisualizerComponentMapping";
64 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
73 arrow::StructBuilder* builder,
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:103
A class for representing either a usable value, or an error.
Definition result.hpp:14
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
A type of component that can be registered.
Definition component_type.hpp:19
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Datatype: Associate components of an entity to components of a visualizer.
Definition visualizer_component_mapping.hpp:25
std::optional< rerun::datatypes::Utf8 > source_component
Component selector for mapping.
Definition visualizer_component_mapping.hpp:37
rerun::blueprint::datatypes::ComponentSourceKind source_kind
What kind of source to pick.
Definition visualizer_component_mapping.hpp:32
std::optional< rerun::datatypes::Utf8 > selector
Optional selector string using jq-like syntax to pick a specific field on source_component.
Definition visualizer_component_mapping.hpp:46
rerun::datatypes::Utf8 target
Target component name which is being mapped to.
Definition visualizer_component_mapping.hpp:29
Datatype: A string of text, encoded as UTF-8.
Definition utf8.hpp:21