1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//! Safety suggestions - Detect code safety improvement opportunities
//!
//! This module provides suggestions for improving code safety by detecting
//! potential panic points and suggesting safer alternatives.
//!
//! # Available Suggestions
//!
//! | Code | Name | Description |
//! |------|------|-------------|
//! | RS101 | `UnwrapToExpect` | Convert unwrap() to expect() with descriptive message |
//! | RS102 | `StringErrorType` | Detect string-based error types, suggest thiserror |
//!
//! # Architecture
//!
//! Safety suggestions analyze AST patterns to find potential panic points:
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ Safety Suggest Detection │
//! │ ──────────────────────── │
//! │ │
//! │ Detection: AST traversal for method calls │
//! │ ├─ unwrap() on Option/Result │
//! │ ├─ Filter: skip if function returns Option/Result (use ?) │
//! │ └─ Context extraction for message generation │
//! │ │
//! │ Message Generation: │
//! │ ├─ Variable context: "config should be Some" │
//! │ ├─ Field context: "self.data should be initialized" │
//! │ └─ Method chain: "get_user() should return Some" │
//! └─────────────────────────────────────────────────────────────────┘
//! ```
pub use StringErrorType;
pub use UnwrapToExpect;
use crate::;
/// Trait for safety-related suggestions
///
/// Provides common utilities for safety detection patterns.