pub enum ProcessOperation<T> {
Next(T),
Control(RuntimeControlMessage),
}
Variants§
Next(T)
Control(RuntimeControlMessage)
Auto Trait Implementations§
impl<T> Freeze for ProcessOperation<T>where
T: Freeze,
impl<T> !RefUnwindSafe for ProcessOperation<T>
impl<T> Send for ProcessOperation<T>where
T: Send,
impl<T> Sync for ProcessOperation<T>where
T: Sync,
impl<T> Unpin for ProcessOperation<T>where
T: Unpin,
impl<T> !UnwindSafe for ProcessOperation<T>
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