pub enum ThreadEventType {
Created,
Started,
Suspended,
Resumed,
Terminated,
Joined,
Detached,
}
Expand description
Thread lifecycle event types.
Variants§
Trait Implementations§
Source§impl Clone for ThreadEventType
impl Clone for ThreadEventType
Source§fn clone(&self) -> ThreadEventType
fn clone(&self) -> ThreadEventType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ThreadEventType
impl Debug for ThreadEventType
impl Copy for ThreadEventType
Auto Trait Implementations§
impl Freeze for ThreadEventType
impl RefUnwindSafe for ThreadEventType
impl Send for ThreadEventType
impl Sync for ThreadEventType
impl Unpin for ThreadEventType
impl UnwindSafe for ThreadEventType
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