Rerun C++ SDK
Loading...
Searching...
No Matches
auto_layout.hpp
1// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/cpp/mod.rs
2// Based on "crates/store/re_types/definitions/rerun/blueprint/components/auto_layout.fbs".
3
4#pragma once
5
6#include "../../datatypes/bool.hpp"
7#include "../../result.hpp"
8
9#include <cstdint>
10#include <memory>
11
12namespace rerun::blueprint::components {
13 /// **Component**: Whether the viewport layout is determined automatically.
14 struct AutoLayout {
15 rerun::datatypes::Bool auto_layout;
16
17 public:
18 AutoLayout() = default;
19
20 AutoLayout(rerun::datatypes::Bool auto_layout_) : auto_layout(auto_layout_) {}
21
22 AutoLayout& operator=(rerun::datatypes::Bool auto_layout_) {
23 auto_layout = auto_layout_;
24 return *this;
25 }
26
27 AutoLayout(bool value_) : auto_layout(value_) {}
28
29 AutoLayout& operator=(bool value_) {
30 auto_layout = value_;
31 return *this;
32 }
33
34 /// Cast to the underlying Bool datatype
35 operator rerun::datatypes::Bool() const {
36 return auto_layout;
37 }
38 };
39} // namespace rerun::blueprint::components
40
41namespace rerun {
42 static_assert(sizeof(rerun::datatypes::Bool) == sizeof(blueprint::components::AutoLayout));
43
44 /// \private
45 template <>
46 struct Loggable<blueprint::components::AutoLayout> {
47 static constexpr const char Name[] = "rerun.blueprint.components.AutoLayout";
48
49 /// Returns the arrow data type this type corresponds to.
50 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
52 }
53
54 /// Serializes an array of `rerun::blueprint:: components::AutoLayout` into an arrow array.
55 static Result<std::shared_ptr<arrow::Array>> to_arrow(
56 const blueprint::components::AutoLayout* instances, size_t num_instances
57 ) {
58 return Loggable<rerun::datatypes::Bool>::to_arrow(
59 &instances->auto_layout,
60 num_instances
61 );
62 }
63 };
64} // namespace rerun
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:22
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Component: Whether the viewport layout is determined automatically.
Definition auto_layout.hpp:14
Datatype: A single boolean.
Definition bool.hpp:19