errors.fyi community error code reference
E0004
rust

Non-exhaustive Match

A match expression does not cover all possible values of the matched type. The compiler requires that every possible input has a corresponding pattern; add the missing patterns or a wildcard arm.

References

โ† all namespaces for E0004