pub enum XfccError<'a> {
TrailingSequence(&'a [u8]),
DuplicatePairKey(PairKey),
ParsingError(Err<Error<&'a [u8]>>),
}
Expand description
XFCC header parsing error
Variants§
TrailingSequence(&'a [u8])
Used by element_list
when there is unconsumed data at the
end of an XFCC header
DuplicatePairKey(PairKey)
Used by element_list
when more than one value is given for a
key that accepts only one value
ParsingError(Err<Error<&'a [u8]>>)
Represents an underlying parsing error
Trait Implementations§
Source§impl<'a> Error for XfccError<'a>
impl<'a> Error for XfccError<'a>
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()
impl<'a> StructuralPartialEq for XfccError<'a>
Auto Trait Implementations§
impl<'a> Freeze for XfccError<'a>
impl<'a> RefUnwindSafe for XfccError<'a>
impl<'a> Send for XfccError<'a>
impl<'a> Sync for XfccError<'a>
impl<'a> Unpin for XfccError<'a>
impl<'a> UnwindSafe for XfccError<'a>
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