pub unsafe trait Scope<'a> {
fn register(&self);
unsafe fn unregister(&self);
}Expand description
A common interface for LocalScope and
StaticScope used internally by the request module.
This trait is an implementation detail. You shouldn’t have to use or implement this trait.
Required Methods
sourceunsafe fn unregister(&self)
unsafe fn unregister(&self)
Unregisters a request from the scope.