pub struct ThreadManager { /* private fields */ }Implementations§
Source§impl ThreadManager
impl ThreadManager
pub fn new(app_context: AppContext) -> Self
pub fn stop(&self)
pub fn pause(&self)
pub fn run(&mut self)
pub fn spawn_thread<R: Runnable + 'static>(&mut self, runnable: R) -> Uuid
pub fn send_app_context_update_to_thread( &self, field_updates: Vec<FieldUpdate>, uuid: Uuid, )
pub fn send_app_context_update_to_all_threads( &self, field_updates: (Uuid, Vec<FieldUpdate>), )
pub fn send_message_to_thread(&self, msg: (Uuid, Message), uuid: Uuid)
pub fn send_message_to_all_threads(&self, msg: (Uuid, Message))
pub fn join_threads(&mut self)
pub fn get_hash<T: Hash>(&self, t: &T) -> u64
pub fn remove_thread(&mut self, uuid: Uuid)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ThreadManager
impl !RefUnwindSafe for ThreadManager
impl Send for ThreadManager
impl !Sync for ThreadManager
impl Unpin for ThreadManager
impl !UnwindSafe for ThreadManager
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.