Enum leo_input::errors::parser::InputParserError [−][src]
Variants
InputNotFound(String)FileReadError(PathBuf)ParseIntError(ParseIntError)ParseBoolError(ParseBoolError)SyntaxError(InputSyntaxError)Implementations
impl InputParserError[src]
pub fn set_path(&mut self, path: &str, _content: &[String])[src]
pub fn get_path(&self) -> Option<&str>[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]
type_: Type<'_>,
expression: Expression<'_>
) -> Self
pub fn array_inline_length(
number: usize,
array: ArrayInlineExpression<'_>
) -> Self[src]
number: usize,
array: ArrayInlineExpression<'_>
) -> Self
pub fn array_init_length(
expected: Vec<usize>,
actual: Vec<usize>,
span: &Span<'_>
) -> Self[src]
expected: Vec<usize>,
actual: Vec<usize>,
span: &Span<'_>
) -> Self
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]
fn source(&self) -> Option<&(dyn Error + 'static)>[src]
pub fn backtrace(&self) -> Option<&Backtrace>[src]
pub fn description(&self) -> &str1.0.0[src]
pub fn cause(&self) -> Option<&dyn Error>1.0.0[src]
impl From<Error<Rule>> for InputParserError[src]
impl From<ParseBoolError> for InputParserError[src]
fn from(source: ParseBoolError) -> Self[src]
impl From<ParseIntError> for InputParserError[src]
fn from(source: ParseIntError) -> Self[src]
impl From<SyntaxError> for InputParserError[src]
fn from(source: InputSyntaxError) -> Self[src]
Auto Trait Implementations
impl RefUnwindSafe for InputParserError
impl Send for InputParserError
impl Sync for InputParserError
impl Unpin for InputParserError
impl UnwindSafe for InputParserError
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,