Enum jvmtiError

Source
#[repr(C)]
pub enum jvmtiError {
Show 49 variants JVMTI_ERROR_NONE = 0, JVMTI_ERROR_INVALID_THREAD = 10, JVMTI_ERROR_INVALID_THREAD_GROUP = 11, JVMTI_ERROR_INVALID_PRIORITY = 12, JVMTI_ERROR_THREAD_NOT_SUSPENDED = 13, JVMTI_ERROR_THREAD_SUSPENDED = 14, JVMTI_ERROR_THREAD_NOT_ALIVE = 15, JVMTI_ERROR_INVALID_OBJECT = 20, JVMTI_ERROR_INVALID_CLASS = 21, JVMTI_ERROR_CLASS_NOT_PREPARED = 22, JVMTI_ERROR_INVALID_METHODID = 23, JVMTI_ERROR_INVALID_LOCATION = 24, JVMTI_ERROR_INVALID_FIELDID = 25, JVMTI_ERROR_NO_MORE_FRAMES = 31, JVMTI_ERROR_OPAQUE_FRAME = 32, JVMTI_ERROR_TYPE_MISMATCH = 34, JVMTI_ERROR_INVALID_SLOT = 35, JVMTI_ERROR_DUPLICATE = 40, JVMTI_ERROR_NOT_FOUND = 41, JVMTI_ERROR_INVALID_MONITOR = 50, JVMTI_ERROR_NOT_MONITOR_OWNER = 51, JVMTI_ERROR_INTERRUPT = 52, JVMTI_ERROR_INVALID_CLASS_FORMAT = 60, JVMTI_ERROR_CIRCULAR_CLASS_DEFINITION = 61, JVMTI_ERROR_FAILS_VERIFICATION = 62, JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_ADDED = 63, JVMTI_ERROR_UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED = 64, JVMTI_ERROR_INVALID_TYPESTATE = 65, JVMTI_ERROR_UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED = 66, JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_DELETED = 67, JVMTI_ERROR_UNSUPPORTED_VERSION = 68, JVMTI_ERROR_NAMES_DONT_MATCH = 69, JVMTI_ERROR_UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED = 70, JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_MODIFIERS_CHANGED = 71, JVMTI_ERROR_UNMODIFIABLE_CLASS = 79, JVMTI_ERROR_NOT_AVAILABLE = 98, JVMTI_ERROR_MUST_POSSESS_CAPABILITY = 99, JVMTI_ERROR_NULL_POINTER = 100, JVMTI_ERROR_ABSENT_INFORMATION = 101, JVMTI_ERROR_INVALID_EVENT_TYPE = 102, JVMTI_ERROR_ILLEGAL_ARGUMENT = 103, JVMTI_ERROR_NATIVE_METHOD = 104, JVMTI_ERROR_CLASS_LOADER_UNSUPPORTED = 106, JVMTI_ERROR_OUT_OF_MEMORY = 110, JVMTI_ERROR_ACCESS_DENIED = 111, JVMTI_ERROR_WRONG_PHASE = 112, JVMTI_ERROR_INTERNAL = 113, JVMTI_ERROR_UNATTACHED_THREAD = 115, JVMTI_ERROR_INVALID_ENVIRONMENT = 116,
}

Variants§

§

JVMTI_ERROR_NONE = 0

§

JVMTI_ERROR_INVALID_THREAD = 10

§

JVMTI_ERROR_INVALID_THREAD_GROUP = 11

§

JVMTI_ERROR_INVALID_PRIORITY = 12

§

JVMTI_ERROR_THREAD_NOT_SUSPENDED = 13

§

JVMTI_ERROR_THREAD_SUSPENDED = 14

§

JVMTI_ERROR_THREAD_NOT_ALIVE = 15

§

JVMTI_ERROR_INVALID_OBJECT = 20

§

JVMTI_ERROR_INVALID_CLASS = 21

§

JVMTI_ERROR_CLASS_NOT_PREPARED = 22

§

JVMTI_ERROR_INVALID_METHODID = 23

§

JVMTI_ERROR_INVALID_LOCATION = 24

§

JVMTI_ERROR_INVALID_FIELDID = 25

§

JVMTI_ERROR_NO_MORE_FRAMES = 31

§

JVMTI_ERROR_OPAQUE_FRAME = 32

§

JVMTI_ERROR_TYPE_MISMATCH = 34

§

JVMTI_ERROR_INVALID_SLOT = 35

§

JVMTI_ERROR_DUPLICATE = 40

§

JVMTI_ERROR_NOT_FOUND = 41

§

JVMTI_ERROR_INVALID_MONITOR = 50

§

JVMTI_ERROR_NOT_MONITOR_OWNER = 51

§

JVMTI_ERROR_INTERRUPT = 52

§

JVMTI_ERROR_INVALID_CLASS_FORMAT = 60

§

JVMTI_ERROR_CIRCULAR_CLASS_DEFINITION = 61

§

JVMTI_ERROR_FAILS_VERIFICATION = 62

§

JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_ADDED = 63

§

JVMTI_ERROR_UNSUPPORTED_REDEFINITION_SCHEMA_CHANGED = 64

§

JVMTI_ERROR_INVALID_TYPESTATE = 65

§

JVMTI_ERROR_UNSUPPORTED_REDEFINITION_HIERARCHY_CHANGED = 66

§

JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_DELETED = 67

§

JVMTI_ERROR_UNSUPPORTED_VERSION = 68

§

JVMTI_ERROR_NAMES_DONT_MATCH = 69

§

JVMTI_ERROR_UNSUPPORTED_REDEFINITION_CLASS_MODIFIERS_CHANGED = 70

§

JVMTI_ERROR_UNSUPPORTED_REDEFINITION_METHOD_MODIFIERS_CHANGED = 71

§

JVMTI_ERROR_UNMODIFIABLE_CLASS = 79

§

JVMTI_ERROR_NOT_AVAILABLE = 98

§

JVMTI_ERROR_MUST_POSSESS_CAPABILITY = 99

§

JVMTI_ERROR_NULL_POINTER = 100

§

JVMTI_ERROR_ABSENT_INFORMATION = 101

§

JVMTI_ERROR_INVALID_EVENT_TYPE = 102

§

JVMTI_ERROR_ILLEGAL_ARGUMENT = 103

§

JVMTI_ERROR_NATIVE_METHOD = 104

§

JVMTI_ERROR_CLASS_LOADER_UNSUPPORTED = 106

§

JVMTI_ERROR_OUT_OF_MEMORY = 110

§

JVMTI_ERROR_ACCESS_DENIED = 111

§

JVMTI_ERROR_WRONG_PHASE = 112

§

JVMTI_ERROR_INTERNAL = 113

§

JVMTI_ERROR_UNATTACHED_THREAD = 115

§

JVMTI_ERROR_INVALID_ENVIRONMENT = 116

Trait Implementations§

Source§

impl Clone for jvmtiError

Source§

fn clone(&self) -> jvmtiError

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for jvmtiError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for jvmtiError

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.