fish-shell/fish-rust/src/wutil/errors.rs
ridiculousfish dec3976a1f wcstoi: remove the consume_all / consumed_all machinery
Nothing sets these, so they can be removed. Also remove CharsLeft
for the same reason.
2023-05-14 18:38:24 -07:00

12 lines
305 B
Rust

#[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,
}