re_types/components/
image_format.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, Default, Copy, PartialEq, Eq, Hash)]
23#[repr(transparent)]
24pub struct ImageFormat(pub crate::datatypes::ImageFormat);
25
26impl ::re_types_core::Component for ImageFormat {
27 #[inline]
28 fn descriptor() -> ComponentDescriptor {
29 ComponentDescriptor::new("rerun.components.ImageFormat")
30 }
31}
32
33::re_types_core::macros::impl_into_cow!(ImageFormat);
34
35impl ::re_types_core::Loggable for ImageFormat {
36 #[inline]
37 fn arrow_datatype() -> arrow::datatypes::DataType {
38 crate::datatypes::ImageFormat::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::ImageFormat::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::ImageFormat::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::ImageFormat>> From<T> for ImageFormat {
67 fn from(v: T) -> Self {
68 Self(v.into())
69 }
70}
71
72impl std::borrow::Borrow<crate::datatypes::ImageFormat> for ImageFormat {
73 #[inline]
74 fn borrow(&self) -> &crate::datatypes::ImageFormat {
75 &self.0
76 }
77}
78
79impl std::ops::Deref for ImageFormat {
80 type Target = crate::datatypes::ImageFormat;
81
82 #[inline]
83 fn deref(&self) -> &crate::datatypes::ImageFormat {
84 &self.0
85 }
86}
87
88impl std::ops::DerefMut for ImageFormat {
89 #[inline]
90 fn deref_mut(&mut self) -> &mut crate::datatypes::ImageFormat {
91 &mut self.0
92 }
93}
94
95impl ::re_byte_size::SizeBytes for ImageFormat {
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::ImageFormat>::is_pod()
104 }
105}