pub enum Error {
Io(Error),
ExhaustedRetries,
Canceled,
Invalid,
SequenceMismatch,
Checksum,
}Variants§
Io(Error)
ExhaustedRetries
The number of communications errors exceeded max_errors in a
single transmission.
Canceled
The transmission was canceled by the other end of the channel.
Invalid
Data was received that is not appropriate to the transfer state.
SequenceMismatch
A packet was received with mismatched sequence numbers.
Checksum
A packet was received with an incorrect checksum or CRC16.