Enum macbinary::ParseError
source · pub enum ParseError {
BadEof,
BadValue,
BadVersion,
BadOffset,
BadIndex,
Overflow,
CrcMismatch,
}Expand description
Errors that originate when parsing binary data
Variants§
BadEof
EOF was reached unexpectedly
BadValue
A value was outside the expected range
BadVersion
A version field contained an unsupported version
BadOffset
An offset was outside allowed bounds
BadIndex
An index was outside the valid range
Overflow
A value overflowed its storage type
CrcMismatch
CRC did not match expected value
Trait Implementations§
source§impl Clone for ParseError
impl Clone for ParseError
source§fn clone(&self) -> ParseError
fn clone(&self) -> ParseError
Returns a copy 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 ParseError
impl Debug for ParseError
source§impl Display for ParseError
impl Display for ParseError
source§impl Error for ParseError
impl Error for ParseError
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()
source§impl From<TryFromIntError> for ParseError
impl From<TryFromIntError> for ParseError
source§fn from(_error: TryFromIntError) -> Self
fn from(_error: TryFromIntError) -> Self
Converts to this type from the input type.
source§impl PartialEq<ParseError> for ParseError
impl PartialEq<ParseError> for ParseError
source§fn eq(&self, other: &ParseError) -> bool
fn eq(&self, other: &ParseError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.