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]

[src]

Unwrap to the internal jni type.

Trait Implementations

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

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Performs the conversion.