Skip to main content

ParseError

Struct ParseError 

Source
pub struct ParseError {
    pub kind: ParseErrorKind,
    pub span: Span,
}
Expand description

A parse failure with its location.

Fields§

§kind: ParseErrorKind

Why it failed.

§span: Span

Where it failed.

Implementations§

Source§

impl ParseError

Source

pub fn new(kind: ParseErrorKind, span: Span) -> ParseError

Returns a failure at a span.

Source

pub fn offset(&self) -> u32

Returns the byte offset a caller should point at.

Source

pub fn message(&self) -> String

Returns the one-line message.

Source

pub fn code(&self) -> PrimaryCode

Returns the stable result code this failure reports as.

A syntax error is SQLITE_ERROR, which is what the pinned release returns from prepare. A limit is SQLITE_TOOBIG where SQLite uses it and SQLITE_ERROR where SQLite reports the limit as a parse error, which is the case for parser depth and compound depth.

Trait Implementations§

Source§

impl Clone for ParseError

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ParseError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for ParseError

Source§

impl From<LexError> for ParseError

Source§

fn from(error: LexError) -> ParseError

Lifts a lexer failure into a parse failure at the same offset.

Source§

impl From<ParseError> for DbError

Source§

fn from(error: ParseError) -> DbError

Converts a parse failure into the engine’s stable error, keeping the offset so a caller can point at the character.

Source§

impl PartialEq for ParseError

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ParseError

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.