pub enum RealtimePayloadStateTransactionError<E: Error> {
Model(E),
PayloadHistory(RealtimePayloadHistoryError),
}Expand description
Failure while publishing or discarding paired realtime semantic state.
Variants§
Model(E)
The underlying model/cache transaction failed.
PayloadHistory(RealtimePayloadHistoryError)
The branch payload history no longer matches the canonical schedule.
Trait Implementations§
Source§impl<E> Display for RealtimePayloadStateTransactionError<E>
impl<E> Display for RealtimePayloadStateTransactionError<E>
Source§impl<E: Error> Error for RealtimePayloadStateTransactionError<E>
impl<E: Error> Error for RealtimePayloadStateTransactionError<E>
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Auto Trait Implementations§
impl<E> Freeze for RealtimePayloadStateTransactionError<E>where
E: Freeze,
impl<E> RefUnwindSafe for RealtimePayloadStateTransactionError<E>where
E: RefUnwindSafe,
impl<E> Send for RealtimePayloadStateTransactionError<E>where
E: Send,
impl<E> Sync for RealtimePayloadStateTransactionError<E>where
E: Sync,
impl<E> Unpin for RealtimePayloadStateTransactionError<E>where
E: Unpin,
impl<E> UnsafeUnpin for RealtimePayloadStateTransactionError<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for RealtimePayloadStateTransactionError<E>where
E: 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