Rellum Rellum

S0003: unknown ingress effect

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

Explanation

An event binding must be sourced from a known ingress effect such as stdin_line!, stdin_char!, button!, or tick_ms!. Unknown effect names cannot deliver values into the reactive graph.

Common causes

Canonical fixes

Before:

line = event(stdin_lines!())

After:

line = event(stdin_line!())

Before:

done = event(print!("ready"))

After:

main! = print!("ready")

Code example

line = event(stdin_lines!())