pub struct AttributeInfoMessage {
pub fractal_heap_address: u64,
pub name_btree_address: u64,
pub creation_order_btree_address: Option<u64>,
pub max_creation_index: Option<u16>,
}Expand description
Attribute info message — points to fractal heap + B-tree v2 for dense attribute storage.
Message type 0x0015.
Fields§
§fractal_heap_address: u64Address of fractal heap for attribute data.
name_btree_address: u64Address of B-tree v2 for name-indexed attribute lookup.
creation_order_btree_address: Option<u64>Address of B-tree v2 for creation-order-indexed lookup (if tracked).
max_creation_index: Option<u16>Maximum creation order index value.
Implementations§
Trait Implementations§
Source§impl Clone for AttributeInfoMessage
impl Clone for AttributeInfoMessage
Source§fn clone(&self) -> AttributeInfoMessage
fn clone(&self) -> AttributeInfoMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AttributeInfoMessage
impl RefUnwindSafe for AttributeInfoMessage
impl Send for AttributeInfoMessage
impl Sync for AttributeInfoMessage
impl Unpin for AttributeInfoMessage
impl UnsafeUnpin for AttributeInfoMessage
impl UnwindSafe for AttributeInfoMessage
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