pub enum E2eError {
Length,
Crc,
DataId,
Counter,
Unsupported,
}Expand description
Errors that may happen during protect/check/unwrap.
Variants§
Length
Payload or frame length is out of the profile’s constraints.
Crc
CRC (integrity) verification failed.
DataId
Data-ID (or Data-ID-List based mapping) check failed.
Counter
Counter policy violation (gap, wrong step, illegal value).
Unsupported
Feature or operation is not supported by the active profile.
Trait Implementations§
impl Copy for E2eError
impl Eq for E2eError
impl StructuralPartialEq for E2eError
Auto Trait Implementations§
impl Freeze for E2eError
impl RefUnwindSafe for E2eError
impl Send for E2eError
impl Sync for E2eError
impl Unpin for E2eError
impl UnwindSafe for E2eError
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