pub enum ParseErrorSide {
Left,
Right,
}
Available on crate feature
easy-functions
only.Expand description
The operand (side) which caused a parse error.
§Compatibility Note
Since the version 0.3, the representation of this enum is no longer specified as specific representation of this enum is not important.
Variants§
Trait Implementations§
Source§impl Clone for ParseErrorSide
impl Clone for ParseErrorSide
Source§fn clone(&self) -> ParseErrorSide
fn clone(&self) -> ParseErrorSide
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 ParseErrorSide
impl Debug for ParseErrorSide
Source§impl PartialEq for ParseErrorSide
impl PartialEq for ParseErrorSide
impl Copy for ParseErrorSide
impl Eq for ParseErrorSide
impl StructuralPartialEq for ParseErrorSide
Auto Trait Implementations§
impl Freeze for ParseErrorSide
impl RefUnwindSafe for ParseErrorSide
impl Send for ParseErrorSide
impl Sync for ParseErrorSide
impl Unpin for ParseErrorSide
impl UnwindSafe for ParseErrorSide
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