Option と Some(x) の等価チェックを単純化できることを報告します。
Option
Some(x)
例:
option == Some(x) Some(x) != option
クイックフィックス適用後:
option.contains(x) !option.contains(x)