[][src]Struct jvm_rs::jvm::class_size_info

#[repr(C)]pub struct class_size_info {
    pub constants: c_uint,
    pub fields: c_uint,
    pub methods: c_uint,
    pub interfaces: c_uint,
    pub fields2: c_uint,
    pub innerclasses: c_uint,
    pub clinit: method_size_info,
    pub main: method_size_info,
}

Fields

constants: c_uintfields: c_uintmethods: c_uintinterfaces: c_uintfields2: c_uintinnerclasses: c_uintclinit: method_size_infomain: method_size_info

Trait Implementations

impl Clone for class_size_info[src]

impl Copy for class_size_info[src]

impl Debug for class_size_info[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.