6#include "../../blueprint/components/visualizer_component_mapping.hpp"
7#include "../../blueprint/components/visualizer_type.hpp"
8#include "../../collection.hpp"
9#include "../../component_batch.hpp"
10#include "../../component_column.hpp"
11#include "../../result.hpp"
18namespace rerun::blueprint::archetypes {
33 "rerun.blueprint.archetypes.VisualizerInstruction";
75 return std::move(*
this);
85 return std::move(*
this);
109 template <
typename T>
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
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
Arrow-encoded data of a single batch of components together with a component descriptor.
Definition component_batch.hpp:28
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &descriptor)
Creates a new component batch from a collection of component instances.
Definition component_batch.hpp:46
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:16
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: A visualizer instruction for an entity.
Definition visualizer_instruction.hpp:23
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition visualizer_instruction.hpp:32
std::optional< ComponentBatch > component_map
The component mapping pairs.
Definition visualizer_instruction.hpp:28
static constexpr auto Descriptor_visualizer_type
ComponentDescriptor for the visualizer_type field.
Definition visualizer_instruction.hpp:36
VisualizerInstruction with_component_map(const Collection< rerun::blueprint::components::VisualizerComponentMapping > &_component_map) &&
The component mapping pairs.
Definition visualizer_instruction.hpp:79
static VisualizerInstruction clear_fields()
Clear all the fields of a VisualizerInstruction.
VisualizerInstruction with_visualizer_type(const rerun::blueprint::components::VisualizerType &_visualizer_type) &&
The type of the visualizer.
Definition visualizer_instruction.hpp:69
static VisualizerInstruction update_fields()
Update only some specific fields of a VisualizerInstruction.
Definition visualizer_instruction.hpp:61
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
std::optional< ComponentBatch > visualizer_type
The type of the visualizer.
Definition visualizer_instruction.hpp:25
static constexpr auto Descriptor_component_map
ComponentDescriptor for the component_map field.
Definition visualizer_instruction.hpp:41
Component: The type of the visualizer.
Definition visualizer_type.hpp:19