rust · rust/E0004
E0004
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.
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.