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.

Creates a new null object

Trait Implementations

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

Look up the concrete type from the JVM.

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

Performs the conversion.

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. Read more

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

Performs the conversion.

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

The resulting type after dereferencing.

Dereferences the value.

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

Performs the conversion.

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

Performs the conversion.

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.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

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

Performs the conversion.

impl<'a> From<&'a GlobalRef> for JObject<'a>
[src]

Performs the conversion.

Auto Trait Implementations

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

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