pub enum JvmtiPrimitiveType {
Boolean,
Byte,
Char,
Short,
Int,
Long,
Float,
Double,
Unsupported(jvmtiPrimitiveType),
}
Variants§
Trait Implementations§
Source§impl Debug for JvmtiPrimitiveType
impl Debug for JvmtiPrimitiveType
Source§impl From<JvmtiPrimitiveType> for jvmtiPrimitiveType
impl From<JvmtiPrimitiveType> for jvmtiPrimitiveType
Source§fn from(value: JvmtiPrimitiveType) -> Self
fn from(value: JvmtiPrimitiveType) -> Self
Converts to this type from the input type.
Source§impl From<u32> for JvmtiPrimitiveType
impl From<u32> for JvmtiPrimitiveType
Source§fn from(value: jvmtiPrimitiveType) -> Self
fn from(value: jvmtiPrimitiveType) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for JvmtiPrimitiveType
impl RefUnwindSafe for JvmtiPrimitiveType
impl Send for JvmtiPrimitiveType
impl Sync for JvmtiPrimitiveType
impl Unpin for JvmtiPrimitiveType
impl UnwindSafe for JvmtiPrimitiveType
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