re_types/components/
video_timestamp.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, Default)]
23#[repr(transparent)]
24pub struct VideoTimestamp(pub crate::datatypes::VideoTimestamp);
25
26impl ::re_types_core::Component for VideoTimestamp {
27 #[inline]
28 fn descriptor() -> ComponentDescriptor {
29 ComponentDescriptor::new("rerun.components.VideoTimestamp")
30 }
31}
32
33::re_types_core::macros::impl_into_cow!(VideoTimestamp);
34
35impl ::re_types_core::Loggable for VideoTimestamp {
36 #[inline]
37 fn arrow_datatype() -> arrow::datatypes::DataType {
38 crate::datatypes::VideoTimestamp::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::VideoTimestamp::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::VideoTimestamp::from_arrow_opt(arrow_data)
62 .map(|v| v.into_iter().map(|v| v.map(Self)).collect())
63 }
64
65 #[inline]
66 fn from_arrow(arrow_data: &dyn arrow::array::Array) -> DeserializationResult<Vec<Self>>
67 where
68 Self: Sized,
69 {
70 crate::datatypes::VideoTimestamp::from_arrow(arrow_data)
71 .map(|v| v.into_iter().map(Self).collect())
72 }
73}
74
75impl<T: Into<crate::datatypes::VideoTimestamp>> From<T> for VideoTimestamp {
76 fn from(v: T) -> Self {
77 Self(v.into())
78 }
79}
80
81impl std::borrow::Borrow<crate::datatypes::VideoTimestamp> for VideoTimestamp {
82 #[inline]
83 fn borrow(&self) -> &crate::datatypes::VideoTimestamp {
84 &self.0
85 }
86}
87
88impl std::ops::Deref for VideoTimestamp {
89 type Target = crate::datatypes::VideoTimestamp;
90
91 #[inline]
92 fn deref(&self) -> &crate::datatypes::VideoTimestamp {
93 &self.0
94 }
95}
96
97impl std::ops::DerefMut for VideoTimestamp {
98 #[inline]
99 fn deref_mut(&mut self) -> &mut crate::datatypes::VideoTimestamp {
100 &mut self.0
101 }
102}
103
104impl ::re_byte_size::SizeBytes for VideoTimestamp {
105 #[inline]
106 fn heap_size_bytes(&self) -> u64 {
107 self.0.heap_size_bytes()
108 }
109
110 #[inline]
111 fn is_pod() -> bool {
112 <crate::datatypes::VideoTimestamp>::is_pod()
113 }
114}