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