pub struct SharedMessageRef {
pub ref_type: u8,
pub version: u8,
pub object_header_address: Option<u64>,
pub heap_id: Option<[u8; 8]>,
}Expand description
A resolved shared message reference.
Fields§
§ref_type: u8The type of shared message reference.
version: u8Version of the shared message encoding.
object_header_address: Option<u64>Address of the object header containing the shared message (type 1, 3).
heap_id: Option<[u8; 8]>Fractal heap ID for type 2 (SOHM) references.
Trait Implementations§
Source§fn clone(&self) -> SharedMessageRef
fn clone(&self) -> SharedMessageRef
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 moreAuto Trait Implementations§
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