RS.CLIPPY.AS_CONVERSIONS
Using a potentially dangerous silent `as` conversion
This checker is a Clippy lint created by The Rust Project Contributors. The documentation shown here is a copy of the original documentation for: as_conversions. Copyright ©2025 The Rust Team. All rights reserved.
What it does
Checks for usage of as conversions.
Note that this lint is specialized in linting every single use of as
regardless of whether good alternatives exist or not. If you want more
precise lints for as, please consider using these separate lints:
clippy::cast_losslessclippy::cast_possible_truncationclippy::cast_possible_wrapclippy::cast_precision_lossclippy::cast_sign_lossclippy::char_lit_as_u8clippy::fn_to_numeric_castclippy::fn_to_numeric_cast_with_truncationclippy::ptr_as_ptrclippy::unnecessary_castinvalid_reference_casting
There is a good explanation the reason why this lint should work in this way and how it is useful in this issue.
Why restrict this?
as conversions will perform many kinds of
conversions, including silently lossy conversions and dangerous coercions.
There are cases when it makes sense to use as, so the lint is
Allow by default.
Example
let a: u32;
...
f(a as u16);
Use instead:
f(a.try_into()?);
// or
f(a.try_into().expect("Unexpected u16 overflow in f"));