2021-07-01 09:47:56 +00:00
|
|
|
// Stripped down version of the ErrorKind enum of std
|
2021-06-26 12:50:42 +00:00
|
|
|
#[non_exhaustive]
|
|
|
|
pub enum ErrorKind {
|
|
|
|
NotFound,
|
|
|
|
PermissionDenied,
|
2021-06-26 13:22:15 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
Uncategorized,
|
2021-06-26 12:50:42 +00:00
|
|
|
}
|