pub struct JvmRuntime {
pub vm_name: String,
pub vm_vendor: String,
pub vm_version: String,
}Expand description
JVM Runtime - Format (0,2105)
Java Virtual Machine runtime attributes
§XDR Definition (sFlow JVM)
/* JVM Runtime Attributes */
/* See RuntimeMXBean */
/* opaque = counter_data; enterprise = 0; format = 2105 */
struct jvm_runtime {
string vm_name<64>; /* vm name */
string vm_vendor<32>; /* the vendor for the JVM */
string vm_version<32>; /* the version for the JVM */
}Fields§
§vm_name: StringJVM name
vm_vendor: StringJVM vendor
vm_version: StringJVM version
Trait Implementations§
Source§impl Clone for JvmRuntime
impl Clone for JvmRuntime
Source§fn clone(&self) -> JvmRuntime
fn clone(&self) -> JvmRuntime
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 JvmRuntime
impl Debug for JvmRuntime
Source§impl PartialEq for JvmRuntime
impl PartialEq for JvmRuntime
impl Eq for JvmRuntime
impl StructuralPartialEq for JvmRuntime
Auto Trait Implementations§
impl Freeze for JvmRuntime
impl RefUnwindSafe for JvmRuntime
impl Send for JvmRuntime
impl Sync for JvmRuntime
impl Unpin for JvmRuntime
impl UnwindSafe for JvmRuntime
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