pub trait Scope { // Required methods fn stack(&self) -> Stack; fn path(&self) -> Path; }
Returns the stack an object is associated with.
Returns the object path of self.
self
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".