Enum xfcc_parser::error::XfccError
source · 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)>
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()