mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-21 03:57:38 +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,
|
|
}
|