oxilean_runtime/object/rtobject_raw_bits_group.rs
1//! # RtObject - raw_bits_group Methods
2//!
3//! This module contains method implementations for `RtObject`.
4//!
5//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
6
7use super::rtobject_type::RtObject;
8
9impl RtObject {
10 /// Get the raw bits.
11 pub fn raw_bits(&self) -> u64 {
12 self.bits
13 }
14}