re_types_core/datatypes/
uint32_ext.rs1use super::UInt32;
2
3impl std::ops::Deref for UInt32 {
4 type Target = u32;
5
6 #[inline]
7 fn deref(&self) -> &u32 {
8 &self.0
9 }
10}
11
12impl std::ops::DerefMut for UInt32 {
13 #[inline]
14 fn deref_mut(&mut self) -> &mut u32 {
15 &mut self.0
16 }
17}