Skip to content

Commit 949a5ba

Browse files
committedApr 2, 2020
Auto merge of #5403 - farnz:patch-1, r=flip1995
Improve docs for option_option Hint about using tri-state enums to replace legitimate uses of `Option<Option<_>>` changelog: The docs for `option_option` now suggest using a tri-state enum
2 parents a840d59 + 5f8b696 commit 949a5ba

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed
 

‎clippy_lints/src/types.rs

+18-1
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,31 @@ declare_clippy_lint! {
9999
/// represents an optional optional value which is logically the same thing as an optional
100100
/// value but has an unneeded extra level of wrapping.
101101
///
102+
/// If you have a case where `Some(Some(_))`, `Some(None)` and `None` are distinct cases,
103+
/// consider a custom `enum` instead, with clear names for each case.
104+
///
102105
/// **Known problems:** None.
103106
///
104107
/// **Example**
105108
/// ```rust
106-
/// fn x() -> Option<Option<u32>> {
109+
/// fn get_data() -> Option<Option<u32>> {
107110
/// None
108111
/// }
109112
/// ```
113+
///
114+
/// Better:
115+
///
116+
/// ```rust
117+
/// pub enum Contents {
118+
/// Data(Vec<u8>), // Was Some(Some(Vec<u8>))
119+
/// NotYetFetched, // Was Some(None)
120+
/// None, // Was None
121+
/// }
122+
///
123+
/// fn get_data() -> Contents {
124+
/// Contents::None
125+
/// }
126+
/// ```
110127
pub OPTION_OPTION,
111128
pedantic,
112129
"usage of `Option<Option<T>>`"

0 commit comments

Comments
 (0)
Please sign in to comment.