RS.CLIPPY.UNIMPLEMENTED

`unimplemented!` should not be present in production code

This checker is a Clippy lint created by The Rust Project Contributors. The documentation shown here is a copy of the original documentation for: unimplemented. Copyright ©2025 The Rust Team. All rights reserved.

What it does

Checks for usage of unimplemented!.

Why restrict this?

This macro, or panics in general, may be unwanted in production code.

Example

unimplemented!();