Rellum Rellum

E1001: invalid event multiplicity policy

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

Explanation

Event multiplicity must be one of the policies the parser recognizes: last, first, collect, or once. Any other identifier after multiplicity: is not a valid event source policy.

Common causes

Canonical fixes

Before:

line = event(stdin_line!(), multiplicity: all)

After:

line = event(stdin_line!(), multiplicity: collect)

Code example

line = event(stdin_line!(), multiplicity: all)