pub struct Troupe { /* private fields */ }Expand description
Manages a collection of actors, facilitating their coordinated execution on a shared thread.
Troupe allows grouping multiple actors to run concurrently on the same thread, improving efficiency by reducing
thread management overhead.
Implementations§
Auto Trait Implementations§
impl Freeze for Troupe
impl !RefUnwindSafe for Troupe
impl Send for Troupe
impl Sync for Troupe
impl Unpin for Troupe
impl !UnwindSafe for Troupe
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