pub struct LoopHandle {
pub loop_id: LoopId,
pub control: LoopControl,
pub health: LoopHealth,
pub completion: LoopCompletion,
pub output: Mutex<Receiver<LoopOutputEvent>>,
}Expand description
Live loop handle.
Fields§
§loop_id: LoopIdLoop identity.
control: LoopControlControl.
health: LoopHealthHealth counters.
completion: LoopCompletionCompletion.
output: Mutex<Receiver<LoopOutputEvent>>Output events (independent of Interpreter stream).
Auto Trait Implementations§
impl !Freeze for LoopHandle
impl !RefUnwindSafe for LoopHandle
impl !UnwindSafe for LoopHandle
impl Send for LoopHandle
impl Sync for LoopHandle
impl Unpin for LoopHandle
impl UnsafeUnpin for LoopHandle
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