[][src]Union jni::sys::jvalue

#[repr(C)]pub union jvalue {
    pub z: u8,
    pub b: i8,
    pub c: u16,
    pub s: i16,
    pub i: i32,
    pub j: i64,
    pub f: f32,
    pub d: f64,
    pub l: *mut _jobject,
}

Fields

z: u8b: i8c: u16s: i16i: i32j: i64f: f32d: f64l: *mut _jobject

Trait Implementations

impl Clone for jvalue[src]

impl Copy for jvalue[src]

impl<'a> From<JValue<'a>> for jvalue[src]

Auto Trait Implementations

impl RefUnwindSafe for jvalue

impl !Send for jvalue

impl !Sync for jvalue

impl Unpin for jvalue

impl UnwindSafe for jvalue

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.