pub enum EventSubscriptionUpdate<T> {
Connection(EventConnectionObservation),
Item(T),
}Expand description
One update emitted by a reconnecting subscription supervisor.
Variants§
Connection(EventConnectionObservation)
The transport connection changed state.
Item(T)
The transport delivered one product-owned item.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for EventSubscriptionUpdate<T>where
T: Freeze,
impl<T> RefUnwindSafe for EventSubscriptionUpdate<T>where
T: RefUnwindSafe,
impl<T> Send for EventSubscriptionUpdate<T>where
T: Send,
impl<T> Sync for EventSubscriptionUpdate<T>where
T: Sync,
impl<T> Unpin for EventSubscriptionUpdate<T>where
T: Unpin,
impl<T> UnsafeUnpin for EventSubscriptionUpdate<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for EventSubscriptionUpdate<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