pub trait Scope { // Required method fn end(&self); }
Delineates a logical scope that has some beginning and end (e.g. a function or block of code).
invoke when the scope has ended.