re_types/components/
albedo_factor.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(
23 Clone, Debug, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, bytemuck::Pod, bytemuck::Zeroable,
24)]
25#[repr(transparent)]
26pub struct AlbedoFactor(pub crate::datatypes::Rgba32);
27
28impl ::re_types_core::Component for AlbedoFactor {
29 #[inline]
30 fn descriptor() -> ComponentDescriptor {
31 ComponentDescriptor::new("rerun.components.AlbedoFactor")
32 }
33}
34
35::re_types_core::macros::impl_into_cow!(AlbedoFactor);
36
37impl ::re_types_core::Loggable for AlbedoFactor {
38 #[inline]
39 fn arrow_datatype() -> arrow::datatypes::DataType {
40 crate::datatypes::Rgba32::arrow_datatype()
41 }
42
43 fn to_arrow_opt<'a>(
44 data: impl IntoIterator<Item = Option<impl Into<::std::borrow::Cow<'a, Self>>>>,
45 ) -> SerializationResult<arrow::array::ArrayRef>
46 where
47 Self: Clone + 'a,
48 {
49 crate::datatypes::Rgba32::to_arrow_opt(data.into_iter().map(|datum| {
50 datum.map(|datum| match datum.into() {
51 ::std::borrow::Cow::Borrowed(datum) => ::std::borrow::Cow::Borrowed(&datum.0),
52 ::std::borrow::Cow::Owned(datum) => ::std::borrow::Cow::Owned(datum.0),
53 })
54 }))
55 }
56
57 fn from_arrow_opt(
58 arrow_data: &dyn arrow::array::Array,
59 ) -> DeserializationResult<Vec<Option<Self>>>
60 where
61 Self: Sized,
62 {
63 crate::datatypes::Rgba32::from_arrow_opt(arrow_data)
64 .map(|v| v.into_iter().map(|v| v.map(Self)).collect())
65 }
66
67 #[inline]
68 fn from_arrow(arrow_data: &dyn arrow::array::Array) -> DeserializationResult<Vec<Self>>
69 where
70 Self: Sized,
71 {
72 crate::datatypes::Rgba32::from_arrow(arrow_data).map(bytemuck::cast_vec)
73 }
74}
75
76impl<T: Into<crate::datatypes::Rgba32>> From<T> for AlbedoFactor {
77 fn from(v: T) -> Self {
78 Self(v.into())
79 }
80}
81
82impl std::borrow::Borrow<crate::datatypes::Rgba32> for AlbedoFactor {
83 #[inline]
84 fn borrow(&self) -> &crate::datatypes::Rgba32 {
85 &self.0
86 }
87}
88
89impl std::ops::Deref for AlbedoFactor {
90 type Target = crate::datatypes::Rgba32;
91
92 #[inline]
93 fn deref(&self) -> &crate::datatypes::Rgba32 {
94 &self.0
95 }
96}
97
98impl std::ops::DerefMut for AlbedoFactor {
99 #[inline]
100 fn deref_mut(&mut self) -> &mut crate::datatypes::Rgba32 {
101 &mut self.0
102 }
103}
104
105impl ::re_byte_size::SizeBytes for AlbedoFactor {
106 #[inline]
107 fn heap_size_bytes(&self) -> u64 {
108 self.0.heap_size_bytes()
109 }
110
111 #[inline]
112 fn is_pod() -> bool {
113 <crate::datatypes::Rgba32>::is_pod()
114 }
115}