pub enum JvmtiThreadState {
Show 17 variants
Alive,
Terminated,
Runnable,
BlockedOnMonitorEnter,
Waiting,
WaitingIndefinitely,
WaitingWithTimeout,
Sleeping,
InObjectWait,
Parked,
Suspended,
Interrupted,
InNative,
Vendor1,
Vendor2,
Vendor3,
Unsupported(jvmtiThreadState),
}
Variants§
Alive
Terminated
Runnable
BlockedOnMonitorEnter
Waiting
WaitingIndefinitely
WaitingWithTimeout
Sleeping
InObjectWait
Parked
Suspended
Interrupted
InNative
Vendor1
Vendor2
Vendor3
Unsupported(jvmtiThreadState)
Trait Implementations§
Source§impl Debug for JvmtiThreadState
impl Debug for JvmtiThreadState
Source§impl From<JvmtiThreadState> for jvmtiThreadState
impl From<JvmtiThreadState> for jvmtiThreadState
Source§fn from(value: JvmtiThreadState) -> Self
fn from(value: JvmtiThreadState) -> Self
Converts to this type from the input type.
Source§impl From<u32> for JvmtiThreadState
impl From<u32> for JvmtiThreadState
Source§fn from(value: jvmtiThreadState) -> Self
fn from(value: jvmtiThreadState) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JvmtiThreadState
impl RefUnwindSafe for JvmtiThreadState
impl Send for JvmtiThreadState
impl Sync for JvmtiThreadState
impl Unpin for JvmtiThreadState
impl UnwindSafe for JvmtiThreadState
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