Rerun C++ SDK
Loading...
Searching...
No Matches
uint64.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/uint64.fbs".
3
4#pragma once
5
6#include "../component_descriptor.hpp"
7#include "../result.hpp"
8
9#include <cstdint>
10#include <memory>
11
12namespace arrow {
13 /// \private
14 template <typename T>
15 class NumericBuilder;
16
17 class Array;
18 class DataType;
19 class UInt64Type;
20 using UInt64Builder = NumericBuilder<UInt64Type>;
21} // namespace arrow
22
23namespace rerun::datatypes {
24 /// **Datatype**: A 64bit unsigned integer.
25 struct UInt64 {
26 uint64_t value;
27
28 public:
29 UInt64() = default;
30
31 UInt64(uint64_t value_) : value(value_) {}
32
33 UInt64& operator=(uint64_t value_) {
34 value = value_;
35 return *this;
36 }
37 };
38} // namespace rerun::datatypes
39
40namespace rerun {
41 template <typename T>
42 struct Loggable;
43
44 /// \private
45 template <>
46 struct Loggable<datatypes::UInt64> {
47 static constexpr ComponentDescriptor Descriptor = "rerun.datatypes.UInt64";
48
49 /// Returns the arrow data type this type corresponds to.
50 static const std::shared_ptr<arrow::DataType>& arrow_datatype();
51
52 /// Serializes an array of `rerun::datatypes::UInt64` into an arrow array.
54 const datatypes::UInt64* instances, size_t num_instances
55 );
56
57 /// Fills an arrow array builder with an array of this type.
58 static rerun::Error fill_arrow_array_builder(
59 arrow::UInt64Builder* builder, const datatypes::UInt64* elements, size_t num_elements
60 );
61 };
62} // 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 64bit unsigned integer.
Definition uint64.hpp:25