pub trait Tracer {
    type Handle;
    fn trace_handle(&self, node: &Self::Handle);
}
Expand description

Trace hooks for a garbage-collected DOM.

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