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 "../component_descriptor.hpp"
7#include "../result.hpp"
8
9#include <cstdint>
10#include <memory>
11#include <string>
12#include <utility>
13
14namespace arrow {
15 class Array;
16 class DataType;
17 class StringBuilder;
18} // namespace arrow
19
20namespace rerun::datatypes {
21 /// **Datatype**: A path to an entity in the `ChunkStore`.
22 struct EntityPath {
23 std::string path;
24
25 public:
26 EntityPath() = default;
27
28 EntityPath(std::string path_) : path(std::move(path_)) {}
29
30 EntityPath& operator=(std::string path_) {
31 path = std::move(path_);
32 return *this;
33 }
34 };
35} // namespace rerun::datatypes
36
37namespace rerun {
38 template <typename T>
39 struct Loggable;
40
41 /// \private
42 template <>
43 struct Loggable<datatypes::EntityPath> {
44 static constexpr ComponentDescriptor Descriptor = "rerun.datatypes.EntityPath";
45
46 /// Returns the arrow data type this type corresponds to.
47 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
48
49 /// Serializes an array of `rerun::datatypes::EntityPath` into an arrow array.
51 const datatypes::EntityPath* instances, size_t num_instances
52 );
53
54 /// Fills an arrow array builder with an array of this type.
55 static rerun::Error fill_arrow_array_builder(
56 arrow::StringBuilder* builder, const datatypes::EntityPath* elements,
57 size_t num_elements
58 );
59 };
60} // 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:83
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: A path to an entity in the ChunkStore.
Definition entity_path.hpp:22