pub struct SymbolTableMessage {
pub btree_address: u64,
pub local_heap_address: u64,
}Expand description
Symbol table message — used by v1 groups to reference their B-tree and local heap.
Message type 0x0011.
Fields§
§btree_address: u64Address of the B-tree v1 (type 0) for group members.
local_heap_address: u64Address of the local heap for link names.
Implementations§
Trait Implementations§
Source§impl Clone for SymbolTableMessage
impl Clone for SymbolTableMessage
Source§fn clone(&self) -> SymbolTableMessage
fn clone(&self) -> SymbolTableMessage
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 SymbolTableMessage
impl RefUnwindSafe for SymbolTableMessage
impl Send for SymbolTableMessage
impl Sync for SymbolTableMessage
impl Unpin for SymbolTableMessage
impl UnsafeUnpin for SymbolTableMessage
impl UnwindSafe for SymbolTableMessage
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