errors.fyi community error code reference
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.

References

โ† all namespaces for E0072