pub struct ParserInternalError { /* private fields */ }
Expand description
Internal fatal parser error.
This is usually an unknown FFI to Rust translation.
Implementations§
Trait Implementations§
Source§impl Clone for ParserInternalError
impl Clone for ParserInternalError
Source§fn clone(&self) -> ParserInternalError
fn clone(&self) -> ParserInternalError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParserInternalError
impl Debug for ParserInternalError
Source§impl Default for ParserInternalError
impl Default for ParserInternalError
Source§fn default() -> ParserInternalError
fn default() -> ParserInternalError
Returns the “default value” for a type. Read more
Source§impl Display for ParserInternalError
impl Display for ParserInternalError
Source§impl Error for ParserInternalError
impl Error for ParserInternalError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl Hash for ParserInternalError
impl Hash for ParserInternalError
Source§impl Ord for ParserInternalError
impl Ord for ParserInternalError
Source§fn cmp(&self, other: &ParserInternalError) -> Ordering
fn cmp(&self, other: &ParserInternalError) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ParserInternalError
impl PartialEq for ParserInternalError
Source§impl PartialOrd for ParserInternalError
impl PartialOrd for ParserInternalError
impl Copy for ParserInternalError
impl Eq for ParserInternalError
impl StructuralPartialEq for ParserInternalError
Auto Trait Implementations§
impl Freeze for ParserInternalError
impl RefUnwindSafe for ParserInternalError
impl Send for ParserInternalError
impl Sync for ParserInternalError
impl Unpin for ParserInternalError
impl UnwindSafe for ParserInternalError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more