Rerun C++ SDK
Loading...
Searching...
No Matches
timeline_name.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/timeline_name.fbs".
3
4#pragma once
5
6#include "../../datatypes/utf8.hpp"
7#include "../../result.hpp"
8
9#include <cstdint>
10#include <memory>
11#include <string>
12#include <utility>
13
14namespace rerun::blueprint::components {
15 /// **Component**: A timeline identified by its name.
16 ///
17 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
18 ///
19 struct TimelineName {
21
22 public:
23 TimelineName() = default;
24
25 TimelineName(rerun::datatypes::Utf8 value_) : value(std::move(value_)) {}
26
27 TimelineName& operator=(rerun::datatypes::Utf8 value_) {
28 value = std::move(value_);
29 return *this;
30 }
31
32 TimelineName(std::string value_) : value(std::move(value_)) {}
33
34 TimelineName& operator=(std::string value_) {
35 value = std::move(value_);
36 return *this;
37 }
38
39 /// Cast to the underlying Utf8 datatype
40 operator rerun::datatypes::Utf8() const {
41 return value;
42 }
43 };
44} // namespace rerun::blueprint::components
45
46namespace rerun {
47 static_assert(sizeof(rerun::datatypes::Utf8) == sizeof(blueprint::components::TimelineName));
48
49 /// \private
50 template <>
51 struct Loggable<blueprint::components::TimelineName> {
52 static constexpr std::string_view ComponentType = "rerun.blueprint.components.TimelineName";
53
54 /// Returns the arrow data type this type corresponds to.
55 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
57 }
58
59 /// Serializes an array of `rerun::blueprint:: components::TimelineName` into an arrow array.
60 static Result<std::shared_ptr<arrow::Array>> to_arrow(
61 const blueprint::components::TimelineName* instances, size_t num_instances
62 ) {
63 if (num_instances == 0) {
64 return Loggable<rerun::datatypes::Utf8>::to_arrow(nullptr, 0);
65 } else if (instances == nullptr) {
66 return rerun::Error(
67 ErrorCode::UnexpectedNullArgument,
68 "Passed array instances is null when num_elements> 0."
69 );
70 } else {
71 return Loggable<rerun::datatypes::Utf8>::to_arrow(&instances->value, num_instances);
72 }
73 }
74 };
75} // namespace rerun
Status outcome object (success or error) returned for fallible operations.
Definition error.hpp:99
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
A type of component that can be registered.
Definition component_type.hpp:19
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Component: A timeline identified by its name.
Definition timeline_name.hpp:19
Datatype: A string of text, encoded as UTF-8.
Definition utf8.hpp:21