Skip to main content

Traced

Trait Traced 

Source
pub trait Traced {
    // Required method
    fn trace(&self, visitor: &mut Visitor);
}
Expand description

Trait for inlined objects that are not allocated themselves but otherwise follow managed heap layout.

Required Methods§

Source

fn trace(&self, visitor: &mut Visitor)

Called by the Visitor when tracing managed objects.

Implementations on Foreign Types§

Source§

impl<T: Traced> Traced for Option<T>

Source§

fn trace(&self, visitor: &mut Visitor)

Implementors§