re_types/components/
visible.rs1#![allow(unused_imports)]
5#![allow(unused_parens)]
6#![allow(clippy::clone_on_copy)]
7#![allow(clippy::cloned_instead_of_copied)]
8#![allow(clippy::map_flatten)]
9#![allow(clippy::needless_question_mark)]
10#![allow(clippy::new_without_default)]
11#![allow(clippy::redundant_closure)]
12#![allow(clippy::too_many_arguments)]
13#![allow(clippy::too_many_lines)]
14
15use ::re_types_core::try_serialize_field;
16use ::re_types_core::SerializationResult;
17use ::re_types_core::{ComponentBatch as _, SerializedComponentBatch};
18use ::re_types_core::{ComponentDescriptor, ComponentName};
19use ::re_types_core::{DeserializationError, DeserializationResult};
20
21#[derive(Clone, Debug, Copy, PartialEq, Eq, PartialOrd, Ord)]
23#[repr(transparent)]
24pub struct Visible(pub crate::datatypes::Bool);
25
26impl ::re_types_core::Component for Visible {
27 #[inline]
28 fn descriptor() -> ComponentDescriptor {
29 ComponentDescriptor::new("rerun.components.Visible")
30 }
31}
32
33::re_types_core::macros::impl_into_cow!(Visible);
34
35impl ::re_types_core::Loggable for Visible {
36 #[inline]
37 fn arrow_datatype() -> arrow::datatypes::DataType {
38 crate::datatypes::Bool::arrow_datatype()
39 }
40
41 fn to_arrow_opt<'a>(
42 data: impl IntoIterator<Item = Option<impl Into<::std::borrow::Cow<'a, Self>>>>,
43 ) -> SerializationResult<arrow::array::ArrayRef>
44 where
45 Self: Clone + 'a,
46 {
47 crate::datatypes::Bool::to_arrow_opt(data.into_iter().map(|datum| {
48 datum.map(|datum| match datum.into() {
49 ::std::borrow::Cow::Borrowed(datum) => ::std::borrow::Cow::Borrowed(&datum.0),
50 ::std::borrow::Cow::Owned(datum) => ::std::borrow::Cow::Owned(datum.0),
51 })
52 }))
53 }
54
55 fn from_arrow_opt(
56 arrow_data: &dyn arrow::array::Array,
57 ) -> DeserializationResult<Vec<Option<Self>>>
58 where
59 Self: Sized,
60 {
61 crate::datatypes::Bool::from_arrow_opt(arrow_data)
62 .map(|v| v.into_iter().map(|v| v.map(Self)).collect())
63 }
64}
65
66impl<T: Into<crate::datatypes::Bool>> From<T> for Visible {
67 fn from(v: T) -> Self {
68 Self(v.into())
69 }
70}
71
72impl std::borrow::Borrow<crate::datatypes::Bool> for Visible {
73 #[inline]
74 fn borrow(&self) -> &crate::datatypes::Bool {
75 &self.0
76 }
77}
78
79impl std::ops::Deref for Visible {
80 type Target = crate::datatypes::Bool;
81
82 #[inline]
83 fn deref(&self) -> &crate::datatypes::Bool {
84 &self.0
85 }
86}
87
88impl std::ops::DerefMut for Visible {
89 #[inline]
90 fn deref_mut(&mut self) -> &mut crate::datatypes::Bool {
91 &mut self.0
92 }
93}
94
95impl ::re_byte_size::SizeBytes for Visible {
96 #[inline]
97 fn heap_size_bytes(&self) -> u64 {
98 self.0.heap_size_bytes()
99 }
100
101 #[inline]
102 fn is_pod() -> bool {
103 <crate::datatypes::Bool>::is_pod()
104 }
105}