mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-21 12:07:31 +00:00
7 lines
175 B
Rust
7 lines
175 B
Rust
![]() |
/// Whatever to ignore case (`fn` vs `Fn` vs `FN`) or not. Used for recovering.
|
||
|
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
||
|
pub enum Case {
|
||
|
Sensitive,
|
||
|
Insensitive,
|
||
|
}
|