#[non_exhaustive]pub enum MessageError<T> {
StateIsNotActive(T),
}
Expand description
Error type that will be returned if an error during the message polling or pushing occurred. It will indicate what the cause for the error was and return the original message in the push case.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
StateIsNotActive(T)
Will be returned if the state is not active. If it originated during a push, the rejected messaged will be returned with the error.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for MessageError<T>where
T: Freeze,
impl<T> RefUnwindSafe for MessageError<T>where
T: RefUnwindSafe,
impl<T> Send for MessageError<T>where
T: Send,
impl<T> Sync for MessageError<T>where
T: Sync,
impl<T> Unpin for MessageError<T>where
T: Unpin,
impl<T> UnwindSafe for MessageError<T>where
T: UnwindSafe,
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