mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 00:56:14 +00:00
9 lines
169 B
Rust
9 lines
169 B
Rust
// Stripped down version of the ErrorKind enum of std
|
|
#[non_exhaustive]
|
|
pub enum ErrorKind {
|
|
NotFound,
|
|
PermissionDenied,
|
|
#[doc(hidden)]
|
|
Uncategorized,
|
|
}
|