pub struct RmFastLoadObjectIdTable {
pub registry_offset: usize,
pub count_offset: usize,
pub raw_count: [u8; 4],
pub object_ids: Vec<RmFastLoadObjectId>,
}Expand description
Counted object-id table in /Root/FastLoad/RMFastLoad.
Fields§
§registry_offset: usizePayload-relative offset of the UGS::Solid::Topol registry marker.
count_offset: usizePayload-relative offset of the four-byte count word.
raw_count: [u8; 4]Exact serialized little-endian count word.
object_ids: Vec<RmFastLoadObjectId>Ordered fixed-width object-id members.
Trait Implementations§
Source§impl Clone for RmFastLoadObjectIdTable
impl Clone for RmFastLoadObjectIdTable
Source§fn clone(&self) -> RmFastLoadObjectIdTable
fn clone(&self) -> RmFastLoadObjectIdTable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RmFastLoadObjectIdTable
impl Debug for RmFastLoadObjectIdTable
impl Eq for RmFastLoadObjectIdTable
Source§impl PartialEq for RmFastLoadObjectIdTable
impl PartialEq for RmFastLoadObjectIdTable
impl StructuralPartialEq for RmFastLoadObjectIdTable
Auto Trait Implementations§
impl Freeze for RmFastLoadObjectIdTable
impl RefUnwindSafe for RmFastLoadObjectIdTable
impl Send for RmFastLoadObjectIdTable
impl Sync for RmFastLoadObjectIdTable
impl Unpin for RmFastLoadObjectIdTable
impl UnsafeUnpin for RmFastLoadObjectIdTable
impl UnwindSafe for RmFastLoadObjectIdTable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more