#[repr(C)]pub struct GCCellPtr {
pub ptr: usize,
}
Expand description
A GC pointer, tagged with the trace kind.
In general, a GC pointer should be stored with an exact type. This class is for use when that is not possible because a single pointer must point to several kinds of GC thing.
Fields§
§ptr: usize
Trait Implementations§
impl Copy for GCCellPtr
impl StructuralPartialEq for GCCellPtr
Auto Trait Implementations§
impl Freeze for GCCellPtr
impl RefUnwindSafe for GCCellPtr
impl Send for GCCellPtr
impl Sync for GCCellPtr
impl Unpin for GCCellPtr
impl UnwindSafe for GCCellPtr
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more