You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now it is not possible to use standard container types like HashMap directly in a dynamic pool, and that is too bad because it would be very convenient. The reason is that DynamicReset is defined in the dynamic-pool crate, and HashMap is defined in the standard library, so users of this crate are not allowed to implement DynamicReset for HashMap. However dynamic-pool could provide those implementations because you define the trait.
The text was updated successfully, but these errors were encountered:
Right now it is not possible to use standard container types like HashMap directly in a dynamic pool, and that is too bad because it would be very convenient. The reason is that DynamicReset is defined in the dynamic-pool crate, and HashMap is defined in the standard library, so users of this crate are not allowed to implement DynamicReset for HashMap. However dynamic-pool could provide those implementations because you define the trait.
The text was updated successfully, but these errors were encountered: