# 错误[E0432]: 无法解析导入 `crate::module::Item` —— 在 `module` 中找不到 `Item`

- **ID:** `rust/e0432-import-conflict`
- **领域:** rust
- **类别:** module_error
- **错误码:** `E0432`
- **验证级别:** ai_generated
- **修复率:** 90%

## 根因

尝试从模块中导入一个不存在的项（结构体、函数等），通常是由于拼写错误、缺少模块声明或路径不正确。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| 1.65.0 | active | — | — |
| 1.72.0 | active | — | — |
| 1.80.0 | active | — | — |

## 解决方案

1. ```
   Verify the item name and module path. Check if the module is declared in 'mod.rs' or 'lib.rs'. Example: if module is 'src/utils.rs', use 'use crate::utils::Item;'.
   ```
2. ```
   If the item is re-exported, ensure the re-export is public: 'pub use other_module::Item;' in the module file.
   ```

## 无效尝试

- **** — Adding a 'mod' declaration in the wrong file — this creates a new module instead of importing from an existing one. (70% 失败率)
- **** — Using 'use super::module::Item' when the module is in a sibling file — this may reference the wrong scope. (60% 失败率)
