Move fish-rust to project root

This commit is contained in:
Johannes Altmanninger
2024-01-13 03:45:58 +01:00
parent 22873cacf4
commit 3ae20bdba0
190 changed files with 13 additions and 16 deletions

12
src/wutil/errors.rs Normal file
View File

@@ -0,0 +1,12 @@
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum Error {
// The value overflowed.
Overflow,
// The input string was empty.
Empty,
// The input string contained an invalid char.
// Note this may not be returned for conversions which stop at invalid chars.
InvalidChar,
}