Rellum Rellum

S0047: record type has no such field

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

Explanation

A record value exposes exactly the fields declared on its type. Accessing any other field name is rejected because there is no matching payload slot.

Common causes

Canonical fixes

Before:

x = point.width

After:

x = point.x

Code example

x = point.width