Rerun C++ SDK
Loading...
Searching...
No Matches
selected_columns.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/datatypes/selected_columns.fbs".
3
4#pragma once
5
6#include "../../collection.hpp"
7#include "../../datatypes/utf8.hpp"
8#include "../../result.hpp"
9#include "component_column_selector.hpp"
10
11#include <cstdint>
12#include <memory>
13
14namespace arrow {
15 class Array;
16 class DataType;
17 class StructBuilder;
18} // namespace arrow
19
20namespace rerun::blueprint::datatypes {
21 /// **Datatype**: List of selected columns in a dataframe.
23 /// The time columns to include
25
26 /// The component columns to include
28
29 public:
30 SelectedColumns() = default;
31 };
32} // namespace rerun::blueprint::datatypes
33
34namespace rerun {
35 template <typename T>
36 struct Loggable;
37
38 /// \private
39 template <>
40 struct Loggable<blueprint::datatypes::SelectedColumns> {
41 static constexpr const char Name[] = "rerun.blueprint.datatypes.SelectedColumns";
42
43 /// Returns the arrow data type this type corresponds to.
44 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
45
46 /// Serializes an array of `rerun::blueprint:: datatypes::SelectedColumns` into an arrow array.
48 const blueprint::datatypes::SelectedColumns* instances, size_t num_instances
49 );
50
51 /// Fills an arrow array builder with an array of this type.
52 static rerun::Error fill_arrow_array_builder(
53 arrow::StructBuilder* builder, const blueprint::datatypes::SelectedColumns* elements,
54 size_t num_elements
55 );
56 };
57} // namespace rerun
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:95
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
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Datatype: List of selected columns in a dataframe.
Definition selected_columns.hpp:22
rerun::Collection< rerun::datatypes::Utf8 > time_columns
The time columns to include.
Definition selected_columns.hpp:24
rerun::Collection< rerun::blueprint::datatypes::ComponentColumnSelector > component_columns
The component columns to include.
Definition selected_columns.hpp:27