E0072
rust Recursive Type Without Indirection
A struct or enum references itself directly without indirection, producing a type of infinite size. Wrap the recursive reference in a heap-allocated pointer such as Box, Rc, or Arc.
A struct or enum references itself directly without indirection, producing a type of infinite size. Wrap the recursive reference in a heap-allocated pointer such as Box, Rc, or Arc.