pub unsafe trait Traceable {
    fn mark(&mut self);
    fn unmark(&mut self);
    fn is_marked(&self) -> bool;
}

Required Methods

Mark all contained Traceable Objects

Unmark this Object

Checks if self is marked

Implementors