Is this CPU-bound or I/O-bound, and what's the sharing model?
| Error | Don't Just Say | Ask Instead |
| E0277 Send | "Add Send bound" | Should this type cross threads? | | E0277 Sync | "Wrap in Mutex" | Is shared access really needed? | | Future not Send | "Use spawnlocal" | Is async the right choice? | | Deadlock | "Reorder locks" | Is the locking design correct? |
CRITICO: utilizzare per concorrenza/asincrono. Trigger: E0277 Invia sincronizzazione, non può essere inviato tra thread, thread, spawn, canale, mpsc, Mutex, RwLock, Atomic, async, attendono, Future, tokio, deadlock, race condition, 并发, 线程, 异步, 死锁 Fonte: goooice/rust-skills.