oxilean_runtime/object/rtobject_from_raw_bits_group.rs
1//! # RtObject - from_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 /// Create from raw bits (used for deserialization).
11 pub fn from_raw_bits(bits: u64) -> Self {
12 RtObject { bits }
13 }
14}