Rellum Rellum

S0072: effect cannot be used as a request

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

Explanation

Request bindings observe value-returning effects and store their results in the reactive graph. Ingress effects and fire-only output effects do not produce a value that a request can hold.

Common causes

Canonical fixes

Before:

line ~ request stdin_line!()

After:

line = event(stdin_line!())

Code example

line ~ request stdin_line!()