pub trait ScopeDataLike:
Sized
+ Default
+ Clone {
// Required methods
fn add_declared_symbol(&mut self, id: &Ident);
fn merge(&mut self, other: Self, is_child: bool);
fn mark_used_arguments(&mut self);
fn mark_eval_called(&mut self);
fn mark_with_stmt(&mut self);
}
Required Methods§
fn add_declared_symbol(&mut self, id: &Ident)
fn merge(&mut self, other: Self, is_child: bool)
fn mark_used_arguments(&mut self)
fn mark_eval_called(&mut self)
fn mark_with_stmt(&mut self)
Object Safety§
This trait is not object safe.