re_types/blueprint/views/
text_log_view.rs1#![allow(unused_braces)]
5#![allow(unused_imports)]
6#![allow(unused_parens)]
7#![allow(clippy::clone_on_copy)]
8#![allow(clippy::cloned_instead_of_copied)]
9#![allow(clippy::map_flatten)]
10#![allow(clippy::needless_question_mark)]
11#![allow(clippy::new_without_default)]
12#![allow(clippy::redundant_closure)]
13#![allow(clippy::too_many_arguments)]
14#![allow(clippy::too_many_lines)]
15
16use ::re_types_core::try_serialize_field;
17use ::re_types_core::SerializationResult;
18use ::re_types_core::{ComponentBatch as _, SerializedComponentBatch};
19use ::re_types_core::{ComponentDescriptor, ComponentType};
20use ::re_types_core::{DeserializationError, DeserializationResult};
21
22#[derive(Clone, Debug)]
26pub struct TextLogView {}
27
28impl ::re_types_core::View for TextLogView {
29 #[inline]
30 fn identifier() -> ::re_types_core::ViewClassIdentifier {
31 "TextLog".into()
32 }
33}
34
35impl ::re_byte_size::SizeBytes for TextLogView {
36 #[inline]
37 fn heap_size_bytes(&self) -> u64 {
38 0
39 }
40
41 #[inline]
42 fn is_pod() -> bool {
43 true
44 }
45}