pub enum JvmtiEventMode {
Enable,
Disable,
Unsupported(jvmtiEventMode),
}
Variants§
Trait Implementations§
Source§impl Clone for JvmtiEventMode
impl Clone for JvmtiEventMode
Source§fn clone(&self) -> JvmtiEventMode
fn clone(&self) -> JvmtiEventMode
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 moreSource§impl Debug for JvmtiEventMode
impl Debug for JvmtiEventMode
Source§impl From<JvmtiEventMode> for jvmtiEventMode
impl From<JvmtiEventMode> for jvmtiEventMode
Source§fn from(value: JvmtiEventMode) -> Self
fn from(value: JvmtiEventMode) -> Self
Converts to this type from the input type.
Source§impl From<u32> for JvmtiEventMode
impl From<u32> for JvmtiEventMode
Source§fn from(value: jvmtiEventMode) -> Self
fn from(value: jvmtiEventMode) -> Self
Converts to this type from the input type.
impl Copy for JvmtiEventMode
Auto Trait Implementations§
impl Freeze for JvmtiEventMode
impl RefUnwindSafe for JvmtiEventMode
impl Send for JvmtiEventMode
impl Sync for JvmtiEventMode
impl Unpin for JvmtiEventMode
impl UnwindSafe for JvmtiEventMode
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