zsh 0.8.13

Zsh interpreter and parser in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
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,
}