Rerun C++ SDK
Loading...
Searching...
No Matches
viewer_recommendation_hash.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/viewer_recommendation_hash.fbs".
3
4#pragma once
5
6#include "../../datatypes/uint64.hpp"
7#include "../../result.hpp"
8
9#include <cstdint>
10#include <memory>
11
12namespace rerun::blueprint::components {
13 /// **Component**: Hash of a viewer recommendation.
14 ///
15 /// The formation of this hash is considered an internal implementation detail of the viewer.
18
19 public:
20 ViewerRecommendationHash() = default;
21
22 ViewerRecommendationHash(rerun::datatypes::UInt64 value_) : value(value_) {}
23
25 value = value_;
26 return *this;
27 }
28
29 ViewerRecommendationHash(uint64_t value_) : value(value_) {}
30
31 ViewerRecommendationHash& operator=(uint64_t value_) {
32 value = value_;
33 return *this;
34 }
35
36 /// Cast to the underlying UInt64 datatype
37 operator rerun::datatypes::UInt64() const {
38 return value;
39 }
40 };
41} // namespace rerun::blueprint::components
42
43namespace rerun {
44 static_assert(
46 );
47
48 /// \private
49 template <>
50 struct Loggable<blueprint::components::ViewerRecommendationHash> {
51 static constexpr const char Name[] = "rerun.blueprint.components.ViewerRecommendationHash";
52
53 /// Returns the arrow data type this type corresponds to.
54 static const std::shared_ptr<arrow::DataType>& arrow_datatype() {
56 }
57
58 /// Serializes an array of `rerun::blueprint:: components::ViewerRecommendationHash` into an arrow array.
59 static Result<std::shared_ptr<arrow::Array>> to_arrow(
60 const blueprint::components::ViewerRecommendationHash* instances, size_t num_instances
61 ) {
62 return Loggable<rerun::datatypes::UInt64>::to_arrow(&instances->value, num_instances);
63 }
64 };
65} // namespace rerun
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
Component: Hash of a viewer recommendation.
Definition viewer_recommendation_hash.hpp:16
Datatype: A 64bit unsigned integer.
Definition uint64.hpp:24