#[repr(C)]pub enum jvmtiPhase {
JVMTI_PHASE_ONLOAD = 1,
JVMTI_PHASE_PRIMORDIAL = 2,
JVMTI_PHASE_START = 6,
JVMTI_PHASE_LIVE = 4,
JVMTI_PHASE_DEAD = 8,
}
Variants§
JVMTI_PHASE_ONLOAD = 1
JVMTI_PHASE_PRIMORDIAL = 2
JVMTI_PHASE_START = 6
JVMTI_PHASE_LIVE = 4
JVMTI_PHASE_DEAD = 8
Trait Implementations§
Source§impl Clone for jvmtiPhase
impl Clone for jvmtiPhase
Source§fn clone(&self) -> jvmtiPhase
fn clone(&self) -> jvmtiPhase
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 moreimpl Copy for jvmtiPhase
Auto Trait Implementations§
impl Freeze for jvmtiPhase
impl RefUnwindSafe for jvmtiPhase
impl Send for jvmtiPhase
impl Sync for jvmtiPhase
impl Unpin for jvmtiPhase
impl UnwindSafe for jvmtiPhase
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