Rerun C++ SDK
Loading...
Searching...
No Matches
entity_path.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/datatypes/entity_path.fbs".
3
4#pragma once
5
6#include "../result.hpp"
7
8#include <cstdint>
9#include <memory>
10#include <string>
11#include <utility>
12
13namespace arrow {
14 class Array;
15 class DataType;
16 class StringBuilder;
17} // namespace arrow
18
19namespace rerun::datatypes {
20 /// **Datatype**: A path to an entity in the `ChunkStore`.
21 struct EntityPath {
22 std::string path;
23
24 public:
25 EntityPath() = default;
26
27 EntityPath(std::string path_) : path(std::move(path_)) {}
28
29 EntityPath& operator=(std::string path_) {
30 path = std::move(path_);
31 return *this;
32 }
33 };
34} // namespace rerun::datatypes
35
36namespace rerun {
37 template <typename T>
38 struct Loggable;
39
40 /// \private
41 template <>
42 struct Loggable<datatypes::EntityPath> {
43 static constexpr const char Name[] = "rerun.datatypes.EntityPath";
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::datatypes::EntityPath` into an arrow array.
50 const datatypes::EntityPath* 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::StringBuilder* builder, const datatypes::EntityPath* elements,
56 size_t num_elements
57 );
58 };
59} // namespace rerun
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 built-in datatypes. See Types in the Rerun manual.
Definition rerun.hpp:79
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: A path to an entity in the ChunkStore.
Definition entity_path.hpp:21