| ▲ | fweimer 2 hours ago | |
Surely you need an alternative to Box<dyn Error> for reporting memory allocation failures?! | ||
| ▲ | dwattttt an hour ago | parent [-] | |
A &(dyn Error + 'static) should be fine for that; you don't need any allocated/variable sized data in a memory allocation failure. | ||