pub enum QuotedError<'hdr> {
Bug,
RunAway,
ParsingDetailed(ParsingDetail<'hdr>),
}Expand description
Quoted value parsing error
Variants§
Trait Implementations§
Source§impl<'hdr> Clone for QuotedError<'hdr>
impl<'hdr> Clone for QuotedError<'hdr>
Source§fn clone(&self) -> QuotedError<'hdr>
fn clone(&self) -> QuotedError<'hdr>
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<'hdr> Debug for QuotedError<'hdr>
impl<'hdr> Debug for QuotedError<'hdr>
Source§impl<'hdr> PartialEq for QuotedError<'hdr>
impl<'hdr> PartialEq for QuotedError<'hdr>
impl<'hdr> StructuralPartialEq for QuotedError<'hdr>
Auto Trait Implementations§
impl<'hdr> Freeze for QuotedError<'hdr>
impl<'hdr> RefUnwindSafe for QuotedError<'hdr>
impl<'hdr> Send for QuotedError<'hdr>
impl<'hdr> Sync for QuotedError<'hdr>
impl<'hdr> Unpin for QuotedError<'hdr>
impl<'hdr> UnwindSafe for QuotedError<'hdr>
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