pub enum TransmissionError {
Failure(bool, bool, bool, bool),
RepetitionOverflow,
IncompatibleRepeatMode,
}
Expand description
Errors that can occur during a transmission attempt
Variants
Failure(bool, bool, bool, bool)
Generic Transmission Error
RepetitionOverflow
The maximum number of transmissions (=(2^10)-1
) was exceeded
IncompatibleRepeatMode
The RepeatNtimes
and Forever
modesl are only feasible if the
sequence fits into the RAM in one go. If the sequence has > 48
elements, the RepeatNtimes
and Forever
modes cannot be used.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TransmissionError
impl Send for TransmissionError
impl Sync for TransmissionError
impl Unpin for TransmissionError
impl UnwindSafe for TransmissionError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more