mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
8 lines
169 B
Rust
8 lines
169 B
Rust
// Stripped down version of the ErrorKind enum of std
|
|
#[non_exhaustive]
|
|
pub enum ErrorKind {
|
|
NotFound,
|
|
PermissionDenied,
|
|
#[doc(hidden)]
|
|
Uncategorized,
|
|
}
|