ObjectQueue

Trait ObjectQueue 

Source
pub trait ObjectQueue {
    // Required method
    fn enqueue(&mut self, object: ObjectReference);
}
Expand description

This trait represents an object queue to enqueue objects during tracing.

Required Methods§

Source

fn enqueue(&mut self, object: ObjectReference)

Enqueue an object into the queue.

Implementations on Foreign Types§

Source§

impl ObjectQueue for Option<ObjectReference>

Source§

fn enqueue(&mut self, object: ObjectReference)

Implementors§