Struct jni::objects::JFieldID [] [src]

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

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

Methods

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

[src]

Unwrap to the internal jni type.

Trait Implementations

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

impl<'a> Clone for JFieldID<'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<jfieldID> for JFieldID<'a>
[src]

[src]

Performs the conversion.