#[repr(C)]pub enum jvmtiIterationControl {
JVMTI_ITERATION_CONTINUE = 1,
JVMTI_ITERATION_IGNORE = 2,
JVMTI_ITERATION_ABORT = 0,
}
Variants§
Trait Implementations§
Source§impl Clone for jvmtiIterationControl
impl Clone for jvmtiIterationControl
Source§fn clone(&self) -> jvmtiIterationControl
fn clone(&self) -> jvmtiIterationControl
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 jvmtiIterationControl
Auto Trait Implementations§
impl Freeze for jvmtiIterationControl
impl RefUnwindSafe for jvmtiIterationControl
impl Send for jvmtiIterationControl
impl Sync for jvmtiIterationControl
impl Unpin for jvmtiIterationControl
impl UnwindSafe for jvmtiIterationControl
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