pub struct ObjectsClosure<'a, E: ProcessEdgesWork> {
buffer: VectorQueue<<<E as ProcessEdgesWork>::VM as VMBinding>::VMSlot>,
pub(crate) worker: &'a mut GCWorker<E::VM>,
bucket: WorkBucketStage,
}Expand description
A transitive closure visitor to collect the slots from objects. It maintains a buffer for the slots, and flushes slots to a new work packet if the buffer is full or if the type gets dropped.
Fields§
§buffer: VectorQueue<<<E as ProcessEdgesWork>::VM as VMBinding>::VMSlot>§worker: &'a mut GCWorker<E::VM>§bucket: WorkBucketStageImplementations§
source§impl<'a, E: ProcessEdgesWork> ObjectsClosure<'a, E>
impl<'a, E: ProcessEdgesWork> ObjectsClosure<'a, E>
sourcepub fn new(worker: &'a mut GCWorker<E::VM>, bucket: WorkBucketStage) -> Self
pub fn new(worker: &'a mut GCWorker<E::VM>, bucket: WorkBucketStage) -> Self
Create an ObjectsClosure.
Arguments:
worker: the current worker. The objects closure should not leave the context of this worker.bucket: new work generated will be push ed to the bucket.
fn flush(&mut self)
Trait Implementations§
source§impl<E: ProcessEdgesWork> Drop for ObjectsClosure<'_, E>
impl<E: ProcessEdgesWork> Drop for ObjectsClosure<'_, E>
source§impl<E: ProcessEdgesWork> SlotVisitor<<<E as ProcessEdgesWork>::VM as VMBinding>::VMSlot> for ObjectsClosure<'_, E>
impl<E: ProcessEdgesWork> SlotVisitor<<<E as ProcessEdgesWork>::VM as VMBinding>::VMSlot> for ObjectsClosure<'_, E>
source§fn visit_slot(
&mut self,
slot: <<E as ProcessEdgesWork>::VM as VMBinding>::VMSlot,
)
fn visit_slot( &mut self, slot: <<E as ProcessEdgesWork>::VM as VMBinding>::VMSlot, )
Call this function for each slot.
Auto Trait Implementations§
impl<'a, E> Freeze for ObjectsClosure<'a, E>
impl<'a, E> !RefUnwindSafe for ObjectsClosure<'a, E>
impl<'a, E> Send for ObjectsClosure<'a, E>
impl<'a, E> !Sync for ObjectsClosure<'a, E>
impl<'a, E> Unpin for ObjectsClosure<'a, E>
impl<'a, E> !UnwindSafe for ObjectsClosure<'a, E>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more