Struct jni::objects::JMethodID[][src]

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

Wrapper around sys::jmethodid 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 jmethodid.

Methods

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

Unwrap to the internal jni type.

Trait Implementations

impl<'a, 'c, T, U, V> Desc<'a, JMethodID<'a>> for (T, U, V) where
    T: Desc<'a, JClass<'c>>,
    U: Into<JNIString>,
    V: Into<JNIString>, 
[src]

Look up the concrete type from the JVM.

impl<'a, 'c, T, Signature> Desc<'a, JMethodID<'a>> for (T, Signature) where
    T: Desc<'a, JClass<'c>>,
    Signature: Into<JNIString>, 
[src]

Look up the concrete type from the JVM.

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

impl<'a> From<jmethodID> for JMethodID<'a>
[src]

Performs the conversion.

Auto Trait Implementations

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

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