Rellum Rellum

S0044: unknown field in construction

Generated from rellum-diagnostics/src/db.rs.

Explanation

Record and enum variant constructors may provide only fields declared by the target type or variant. Unknown fields have no storage slot in the value being constructed.

Common causes

Canonical fixes

Before:

point = Point { x: 0, width: 0 }

After:

point = Point { x: 0, y: 0 }

Code example

point = Point { x: 0, width: 0 }