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>>

[src]

Unwrap to the internal jni type.

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

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

[src]

Performs the conversion.

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

The resulting type after dereferencing.

[src]

Dereferences the value.

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

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

[src]

Performs the conversion.