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