Closed antiguru closed 6 months ago
Blanket for all types does not work, unsurprisingly:
error[E0275]: overflow evaluating the requirement `TimelyStack<&&&&&&...>: Sized`
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`timely_container`)
note: required for `&'a &_` to implement `for<'a> PushInto<TimelyStack<&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&_>>`
--> container/src/lib.rs:66:12
|
66 | impl<T, C> PushInto<C> for &&T where for<'a> &'a T: PushInto<C> {
| - ^^^^^^^^^^^ ^^^
| |
| unsatisfied trait bound introduced here
= note: 125 redundant requirements hidden
= note: required for `&'a &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&_` to implement `for<'a> PushInto<TimelyStack<&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&_>>`
This adds some PushInto implementations we forgot about.