pub enum JvmtiJavaLangThreadState {
Mask,
New,
Terminated,
Runnable,
Blocked,
Waiting,
TimedWaiting,
Unsupported(jvmtiJavaLangThreadState),
}
Variants§
Trait Implementations§
Source§impl Debug for JvmtiJavaLangThreadState
impl Debug for JvmtiJavaLangThreadState
Source§impl From<JvmtiJavaLangThreadState> for jvmtiJavaLangThreadState
impl From<JvmtiJavaLangThreadState> for jvmtiJavaLangThreadState
Source§fn from(value: JvmtiJavaLangThreadState) -> Self
fn from(value: JvmtiJavaLangThreadState) -> Self
Converts to this type from the input type.
Source§impl From<u32> for JvmtiJavaLangThreadState
impl From<u32> for JvmtiJavaLangThreadState
Source§fn from(value: jvmtiJavaLangThreadState) -> Self
fn from(value: jvmtiJavaLangThreadState) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JvmtiJavaLangThreadState
impl RefUnwindSafe for JvmtiJavaLangThreadState
impl Send for JvmtiJavaLangThreadState
impl Sync for JvmtiJavaLangThreadState
impl Unpin for JvmtiJavaLangThreadState
impl UnwindSafe for JvmtiJavaLangThreadState
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