Rellum Rellum

W0002: share(...) on a Copy value is unnecessary

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

Explanation

Copy values can already be duplicated freely. share() only changes behavior for Move values that need tick-scoped shared handles.

Common causes

Canonical fixes

Before:

share(count)

After:

count

Code example

share(count)