pub struct GroupEntry {
pub name: String,
pub object_header_address: u64,
pub cache_type: u32,
}Expand description
A resolved group entry (child name + object header address).
Fields§
§name: StringName of the child object.
object_header_address: u64Address of the child’s object header.
cache_type: u32Cache type from the symbol table entry.
Trait Implementations§
Source§impl Clone for GroupEntry
impl Clone for GroupEntry
Source§fn clone(&self) -> GroupEntry
fn clone(&self) -> GroupEntry
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§
impl Freeze for GroupEntry
impl RefUnwindSafe for GroupEntry
impl Send for GroupEntry
impl Sync for GroupEntry
impl Unpin for GroupEntry
impl UnsafeUnpin for GroupEntry
impl UnwindSafe for GroupEntry
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