pub struct MaridProcess { /* private fields */ }Expand description
Signifying the running state of a unit of work, a MaridProcess will spawn a new thread in order to not block the current thread.
Upon dropping, an instance of a MaridProcess will join on the running thread, potentially blocking.
Implementations§
Trait Implementations§
Source§impl Drop for MaridProcess
impl Drop for MaridProcess
Source§impl Process for MaridProcess
impl Process for MaridProcess
Auto Trait Implementations§
impl !Freeze for MaridProcess
impl !RefUnwindSafe for MaridProcess
impl Send for MaridProcess
impl !Sync for MaridProcess
impl Unpin for MaridProcess
impl !UnwindSafe for MaridProcess
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