Rerun C++ SDK
Loading...
Searching...
No Matches
text_log_format.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_sdk_types/definitions/rerun/blueprint/archetypes/text_log_format.fbs".
3
4#pragma once
5
6#include "../../blueprint/components/enabled.hpp"
7#include "../../collection.hpp"
8#include "../../component_batch.hpp"
9#include "../../component_column.hpp"
10#include "../../result.hpp"
11
12#include <cstdint>
13#include <optional>
14#include <utility>
15#include <vector>
16
17namespace rerun::blueprint::archetypes {
18 /// **Archetype**: Configuration of the text log rows.
19 ///
20 /// ⚠ **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**
21 ///
23 /// Whether to use a monospace font for the log message body.
24 ///
25 /// Defaults to not being enabled.
26 std::optional<ComponentBatch> monospace_body;
27
28 public:
29 /// The name of the archetype as used in `ComponentDescriptor`s.
30 static constexpr const char ArchetypeName[] = "rerun.blueprint.archetypes.TextLogFormat";
31
32 /// `ComponentDescriptor` for the `monospace_body` field.
34 ArchetypeName, "TextLogFormat:monospace_body",
36 );
37
38 public:
39 TextLogFormat() = default;
40 TextLogFormat(TextLogFormat&& other) = default;
41 TextLogFormat(const TextLogFormat& other) = default;
42 TextLogFormat& operator=(const TextLogFormat& other) = default;
43 TextLogFormat& operator=(TextLogFormat&& other) = default;
44
45 /// Update only some specific fields of a `TextLogFormat`.
47 return TextLogFormat();
48 }
49
50 /// Clear all the fields of a `TextLogFormat`.
52
53 /// Whether to use a monospace font for the log message body.
54 ///
55 /// Defaults to not being enabled.
57 const rerun::blueprint::components::Enabled& _monospace_body
58 ) && {
61 .value_or_throw();
62 return std::move(*this);
63 }
64
65 /// Partitions the component data into multiple sub-batches.
66 ///
67 /// Specifically, this transforms the existing `ComponentBatch` data into `ComponentColumn`s
68 /// instead, via `ComponentBatch::partitioned`.
69 ///
70 /// This makes it possible to use `RecordingStream::send_columns` to send columnar data directly into Rerun.
71 ///
72 /// The specified `lengths` must sum to the total length of the component batch.
74
75 /// Partitions the component data into unit-length sub-batches.
76 ///
77 /// This is semantically similar to calling `columns` with `std::vector<uint32_t>(n, 1)`,
78 /// where `n` is automatically guessed.
80 };
81
82} // namespace rerun::blueprint::archetypes
83
84namespace rerun {
85 /// \private
86 template <typename T>
87 struct AsComponents;
88
89 /// \private
90 template <>
91 struct AsComponents<blueprint::archetypes::TextLogFormat> {
92 /// Serialize all set component batches.
93 static Result<Collection<ComponentBatch>> as_batches(
95 );
96 };
97} // namespace rerun
Generic collection of elements that are roughly contiguous in memory.
Definition collection.hpp:49
A class for representing either a usable value, or an error.
Definition result.hpp:14
All Rerun C++ types and functions are in the rerun namespace or one of its nested namespaces.
Definition rerun.hpp:23
static Result< ComponentBatch > from_loggable(const rerun::Collection< T > &components, const ComponentDescriptor &descriptor)
Creates a new component batch from a collection of component instances.
Definition component_batch.hpp:46
A ComponentDescriptor fully describes the semantics of a column of data.
Definition component_descriptor.hpp:16
The Loggable trait is used by all built-in implementation of rerun::AsComponents to serialize a colle...
Definition loggable.hpp:11
Archetype: Configuration of the text log rows.
Definition text_log_format.hpp:22
static constexpr auto Descriptor_monospace_body
ComponentDescriptor for the monospace_body field.
Definition text_log_format.hpp:33
static TextLogFormat clear_fields()
Clear all the fields of a TextLogFormat.
static TextLogFormat update_fields()
Update only some specific fields of a TextLogFormat.
Definition text_log_format.hpp:46
Collection< ComponentColumn > columns(const Collection< uint32_t > &lengths_)
Partitions the component data into multiple sub-batches.
std::optional< ComponentBatch > monospace_body
Whether to use a monospace font for the log message body.
Definition text_log_format.hpp:26
static constexpr const char ArchetypeName[]
The name of the archetype as used in ComponentDescriptors.
Definition text_log_format.hpp:30
TextLogFormat with_monospace_body(const rerun::blueprint::components::Enabled &_monospace_body) &&
Whether to use a monospace font for the log message body.
Definition text_log_format.hpp:56
Collection< ComponentColumn > columns()
Partitions the component data into unit-length sub-batches.
Component: Whether a procedure is enabled.
Definition enabled.hpp:17