Skip to main content

re_types_core/datatypes/
uint64_ext.rs

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