pub trait ScopeFactory {
// Required method
fn create_scope(&self) -> ScopePtr;
}Expand description
Factory for custom Scopes.
Required Methods§
fn create_scope(&self) -> ScopePtr
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".