Struct jni::objects::JObject [] [src]

#[repr(C)]
pub struct JObject<'a> { /* fields omitted */ }

Wrapper around sys::jobject that adds a lifetime. This prevents it from outliving the context in which it was acquired and getting GC'd out from under us. It matches C's representation of the raw pointer, so it can be used in any of the extern function argument positions that would take a jobject.

Most other types in the objects module deref to this, as they do in the C representation.

Methods

impl<'a> JObject<'a>
[src]

Unwrap to the internal jni type.

Trait Implementations

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

Formats the value using the given formatter.

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

Performs the conversion.

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

The resulting type after dereferencing

The method called to dereference a value

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.