pub struct DropCheck(/* private fields */);
Expand description
Simple struct that is used by Azul internally to determine when the thread has finished executing.
When this struct goes out of scope, Azul will call .join()
on the thread (so in order to not
block the main thread, simply let it go out of scope naturally.
Auto Trait Implementations§
impl Freeze for DropCheck
impl RefUnwindSafe for DropCheck
impl Send for DropCheck
impl Sync for DropCheck
impl Unpin for DropCheck
impl UnwindSafe for DropCheck
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