Struct jni::objects::JClass[][src]

#[repr(C)]
pub struct JClass<'a>(_);

Lifetime'd representation of a jclass. Just a JObject wrapped in a new class.

Methods from Deref<Target = JObject<'a>>

Trait Implementations

impl<'a, T> Desc<'a, JClass<'a>> for T where
    T: Into<JNIString>, 
[src]

Look up the concrete type from the JVM.

impl<'a, 'b> Desc<'a, JClass<'a>> for JObject<'b>
[src]

Look up the concrete type from the JVM.

impl<'a, 'b> Desc<'a, JClass<'b>> for &'b GlobalRef
[src]

This conversion assumes that the GlobalRef is a pointer to a class object.

Look up the concrete type from the JVM.

impl<'a, 'b, 'c> Desc<'a, JClass<'b>> for &'b AutoLocal<'c> where
    'c: 'b, 
[src]

This conversion assumes that the AutoLocal is a pointer to a class object.

Look up the concrete type from the JVM.

impl<'a> Clone for JClass<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> Copy for JClass<'a>
[src]

impl<'a> Debug for JClass<'a>
[src]

Formats the value using the given formatter. Read more

impl<'a> From<jclass> for JClass<'a>
[src]

Performs the conversion.

impl<'a> Deref for JClass<'a>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<'a> From<JClass<'a>> for JObject<'a>
[src]

Performs the conversion.

impl<'a> From<JObject<'a>> for JClass<'a>
[src]

This conversion assumes that the JObject is a pointer to a class object.

Performs the conversion.

Auto Trait Implementations

impl<'a> !Send for JClass<'a>

impl<'a> !Sync for JClass<'a>