pub struct ParserAllocError { /* private fields */ }
Expand description
Failed to initialize parser during REPL boot.
The parser is needed to properly enter and exit multi-line editing mode.
Implementations§
Trait Implementations§
Source§impl Clone for ParserAllocError
impl Clone for ParserAllocError
Source§fn clone(&self) -> ParserAllocError
fn clone(&self) -> ParserAllocError
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 ParserAllocError
impl Debug for ParserAllocError
Source§impl Default for ParserAllocError
impl Default for ParserAllocError
Source§fn default() -> ParserAllocError
fn default() -> ParserAllocError
Returns the “default value” for a type. Read more
Source§impl Display for ParserAllocError
impl Display for ParserAllocError
Source§impl Error for ParserAllocError
impl Error for ParserAllocError
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 ParserAllocError
impl Hash for ParserAllocError
Source§impl Ord for ParserAllocError
impl Ord for ParserAllocError
Source§fn cmp(&self, other: &ParserAllocError) -> Ordering
fn cmp(&self, other: &ParserAllocError) -> 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 ParserAllocError
impl PartialEq for ParserAllocError
Source§impl PartialOrd for ParserAllocError
impl PartialOrd for ParserAllocError
impl Copy for ParserAllocError
impl Eq for ParserAllocError
impl StructuralPartialEq for ParserAllocError
Auto Trait Implementations§
impl Freeze for ParserAllocError
impl RefUnwindSafe for ParserAllocError
impl Send for ParserAllocError
impl Sync for ParserAllocError
impl Unpin for ParserAllocError
impl UnwindSafe for ParserAllocError
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