Rellum Rellum

S0135: reference cannot be stored in persistent reactive storage

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

Explanation

~ state, graph outputs, and request stored values persist across tick phases. A reference is valid only for its borrow region, so storing it in persistent reactive data could leave a dangling reference on a later tick.

Common causes

Canonical fixes

Before:

held ~ feedback(on line => &line, none)

After:

held ~ feedback(on line => line, "")

Code example

held ~ feedback(on line => &line, none)