pub trait ManagerExt<R: Runtime>: Manager<R> {
// Provided method
fn store_collection(&self) -> Arc<StoreCollection<R>> { ... }
}Provided Methods§
Sourcefn store_collection(&self) -> Arc<StoreCollection<R>>
fn store_collection(&self) -> Arc<StoreCollection<R>>
Returns a handle to the store collection.
§Panics
Panics if the store collection is not in the resources table.
This likely indicates that the method was called before the plugin was properly initialized.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.