RS.CLIPPY.UNSAFE_REMOVED_FROM_NAME
`unsafe` removed from API names on import
This checker is a Clippy lint created by The Rust Project Contributors. The documentation shown here is a copy of the original documentation for: unsafe_removed_from_name. Copyright ©2025 The Rust Team. All rights reserved.
What it does
Checks for imports that remove "unsafe" from an item's name.
Why is this bad?
Renaming makes it less clear which traits and structures are unsafe.
Example
use std::cell::{UnsafeCell as TotallySafeCell};
extern crate crossbeam;
use crossbeam::{spawn_unsafe as spawn};