pub struct ParseFixityError(/* private fields */);Expand description
Error type returned when parsing a Fixity from a string fails.
This error indicates that the provided input string does not correspond
to any known fixity variant ("fun", "prefix", "infix", or "postfix").
Trait Implementations§
Source§impl Clone for ParseFixityError
impl Clone for ParseFixityError
Source§fn clone(&self) -> ParseFixityError
fn clone(&self) -> ParseFixityError
Returns a duplicate 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 ParseFixityError
impl Debug for ParseFixityError
Source§impl Display for ParseFixityError
impl Display for ParseFixityError
Source§impl Error for ParseFixityError
impl Error for ParseFixityError
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()
Auto Trait Implementations§
impl Freeze for ParseFixityError
impl RefUnwindSafe for ParseFixityError
impl Send for ParseFixityError
impl Sync for ParseFixityError
impl Unpin for ParseFixityError
impl UnwindSafe for ParseFixityError
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