[][src]Enum leo_input::errors::parser::InputParserError

pub enum InputParserError {
    InputNotFound(String),
    FileReadError(PathBuf),
    ParseIntError(ParseIntError),
    ParseBoolError(ParseBoolError),
    SyntaxError(InputSyntaxError),
    SyntaxTreeError,
}

Variants

InputNotFound(String)
FileReadError(PathBuf)
ParseIntError(ParseIntError)
ParseBoolError(ParseBoolError)
SyntaxError(InputSyntaxError)
SyntaxTreeError

Implementations

impl InputParserError[src]

pub fn set_path(&mut self, path: &Path)[src]

pub fn array_index(actual: String, span: Span<'_>) -> Self[src]

pub fn implicit_type(data_type: DataType, implicit: NumberValue<'_>) -> Self[src]

pub fn implicit_group(number: NumberValue<'_>) -> Self[src]

pub fn data_type_mismatch(data_type: DataType, value: Value<'_>) -> Self[src]

pub fn expression_type_mismatch(
    type_: Type<'_>,
    expression: Expression<'_>
) -> Self
[src]

pub fn array_inline_length(
    number: usize,
    array: ArrayInlineExpression<'_>
) -> Self
[src]

pub fn array_init_length(
    expected: Vec<usize>,
    actual: Vec<usize>,
    span: Span<'_>
) -> Self
[src]

pub fn input_section_header(header: Header<'_>) -> Self[src]

pub fn public_section(header: Header<'_>) -> Self[src]

pub fn private_section(header: Header<'_>) -> Self[src]

pub fn table(table: Table<'_>) -> Self[src]

pub fn tuple_length(expected: usize, actual: usize, span: Span<'_>) -> Self[src]

pub fn section(header: Header<'_>) -> Self[src]

Trait Implementations

impl Debug for InputParserError[src]

impl Display for InputParserError[src]

impl Error for InputParserError[src]

impl From<Error<Rule>> for InputParserError[src]

impl From<ParseBoolError> for InputParserError[src]

impl From<ParseIntError> for InputParserError[src]

impl From<SyntaxError> for InputParserError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,