pub struct GcStructLayoutField {
pub offset: u32,
pub is_gc_ref: bool,
}
Expand description
A field in a GcStructLayout
.
Fields§
§offset: u32
The offset (in bytes) of this field inside instances of this type.
is_gc_ref: bool
Whether or not this field might contain a reference to another GC object.
Note: it is okay for this to be false
for i31ref
s, since they never
actually reference another GC object.
Trait Implementations§
Source§impl Clone for GcStructLayoutField
impl Clone for GcStructLayoutField
Source§fn clone(&self) -> GcStructLayoutField
fn clone(&self) -> GcStructLayoutField
Returns a copy 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 moreSource§impl Debug for GcStructLayoutField
impl Debug for GcStructLayoutField
impl Copy for GcStructLayoutField
Auto Trait Implementations§
impl Freeze for GcStructLayoutField
impl RefUnwindSafe for GcStructLayoutField
impl Send for GcStructLayoutField
impl Sync for GcStructLayoutField
impl Unpin for GcStructLayoutField
impl UnwindSafe for GcStructLayoutField
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