pub enum JvmVerboseOption {
Class,
Gc,
Jni,
}Expand description
Verbose options for starting a Java VM.
Variants§
Class
Verbose class option.
Passed to the JVM as -verbose:class.
Gc
Verbose GC option.
Passed to the JVM as -verbose:gc.
Jni
Verbose JNI option.
Passed to the JVM as -verbose:jni.
Trait Implementations§
Source§impl Clone for JvmVerboseOption
impl Clone for JvmVerboseOption
Source§fn clone(&self) -> JvmVerboseOption
fn clone(&self) -> JvmVerboseOption
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 JvmVerboseOption
impl Debug for JvmVerboseOption
Source§impl PartialEq for JvmVerboseOption
impl PartialEq for JvmVerboseOption
impl Eq for JvmVerboseOption
impl StructuralPartialEq for JvmVerboseOption
Auto Trait Implementations§
impl Freeze for JvmVerboseOption
impl RefUnwindSafe for JvmVerboseOption
impl Send for JvmVerboseOption
impl Sync for JvmVerboseOption
impl Unpin for JvmVerboseOption
impl UnwindSafe for JvmVerboseOption
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