6#include "../../blueprint/components/panel_state.hpp"
7#include "../../collection.hpp"
8#include "../../compiler_utils.hpp"
9#include "../../component_batch.hpp"
10#include "../../indicator_component.hpp"
11#include "../../result.hpp"
18namespace rerun::blueprint::archetypes {
21 std::optional<rerun::blueprint::components::PanelState> state;
24 static constexpr const char IndicatorComponentName[] =
25 "rerun.blueprint.components.PanelBlueprintIndicator";
34 PanelBlueprint with_state(rerun::blueprint::components::PanelState _state) && {
35 state = std::move(_state);
37 RR_WITH_MAYBE_UNINITIALIZED_DISABLED(
return std::move(*
this);)
50 struct AsComponents<blueprint::archetypes::PanelBlueprint> {
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:22
Archetype: Shared state for the 3 collapsible panels.
Definition panel_blueprint.hpp:20
Indicator component used by archetypes when converting them to component lists.
Definition indicator_component.hpp:30