pub trait Tracer {
    type Handle;

    fn trace_handle(&self, node: &Self::Handle);
}
Expand description

Trace hooks for a garbage-collected DOM.

Required Associated Types

Required Methods

Upon a call to trace_handles, the tree builder will call this method for each handle in its internal state.

Implementors