#[repr(C)]pub enum jvmtiIterationControl {
JVMTI_ITERATION_ABORT = 0,
JVMTI_ITERATION_CONTINUE = 1,
JVMTI_ITERATION_IGNORE = 2,
}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 (const: unstable) · 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 jvmtiIterationControl
impl Debug for jvmtiIterationControl
Source§impl Default for jvmtiIterationControl
impl Default for jvmtiIterationControl
Source§fn default() -> jvmtiIterationControl
fn default() -> jvmtiIterationControl
Returns the “default value” for a type. Read more
Source§impl Hash for jvmtiIterationControl
impl Hash for jvmtiIterationControl
Source§impl Ord for jvmtiIterationControl
impl Ord for jvmtiIterationControl
Source§fn cmp(&self, other: &jvmtiIterationControl) -> Ordering
fn cmp(&self, other: &jvmtiIterationControl) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for jvmtiIterationControl
impl PartialEq for jvmtiIterationControl
Source§fn eq(&self, other: &jvmtiIterationControl) -> bool
fn eq(&self, other: &jvmtiIterationControl) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for jvmtiIterationControl
impl PartialOrd for jvmtiIterationControl
impl Copy for jvmtiIterationControl
impl Eq for jvmtiIterationControl
impl StructuralPartialEq 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 UnsafeUnpin 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