| 2908 | /// See also [MatchSingleton](https://docs.python.org/3/library/ast.html#ast.MatchSingleton) |
| 2909 | #[derive(Clone, Debug, PartialEq, Eq, Hash)] |
| 2910 | pub struct PatternMatchSingleton { |
| 2911 | pub range: TextRange, |
| 2912 | pub value: Singleton, |
| 2913 | } |
| 2914 | |
| 2915 | impl From<PatternMatchSingleton> for Pattern { |
| 2916 | fn from(payload: PatternMatchSingleton) -> Self { |