Type Definition jni::objects::JValueOwned

source ·
pub type JValueOwned<'local> = JValueGen<JObject<'local>>;
Expand description

An owned JValueGen.

This type is used for values returned from Java method calls. If the Java method returns an object reference, it will take the form of an owned JObject.

Trait Implementations§

source§

impl<'local, T: Into<JObject<'local>>> From<T> for JValueOwned<'local>

source§

fn from(other: T) -> Self

Converts to this type from the input type.