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 "../../component_descriptor.hpp"
8#include "../../datatypes/utf8.hpp"
9#include "../../result.hpp"
10#include "component_column_selector.hpp"
11
12#include <cstdint>
13#include <memory>
14
15namespace arrow {
16 class Array;
17 class DataType;
18 class StructBuilder;
19} // namespace arrow
20
21namespace rerun::blueprint::datatypes {
22 /// **Datatype**: List of selected columns in a dataframe.
24 /// The time columns to include
26
27 /// The component columns to include
29
30 public:
31 SelectedColumns() = default;
32 };
33} // namespace rerun::blueprint::datatypes
34
35namespace rerun {
36 template <typename T>
37 struct Loggable;
38
39 /// \private
40 template <>
41 struct Loggable<blueprint::datatypes::SelectedColumns> {
42 static constexpr ComponentDescriptor Descriptor =
43 "rerun.blueprint.datatypes.SelectedColumns";
44
45 /// Returns the arrow data type this type corresponds to.
46 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
47
48 /// Serializes an array of `rerun::blueprint:: datatypes::SelectedColumns` into an arrow array.
50 const blueprint::datatypes::SelectedColumns* instances, size_t num_instances
51 );
52
53 /// Fills an arrow array builder with an array of this type.
54 static rerun::Error fill_arrow_array_builder(
55 arrow::StructBuilder* builder, const blueprint::datatypes::SelectedColumns* elements,
56 size_t num_elements
57 );
58 };
59} // 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:23
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:13
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:23
rerun::Collection< rerun::datatypes::Utf8 > time_columns
The time columns to include.
Definition selected_columns.hpp:25
rerun::Collection< rerun::blueprint::datatypes::ComponentColumnSelector > component_columns
The component columns to include.
Definition selected_columns.hpp:28