Type Alias JByteArray

Source
pub type JByteArray<'local> = JPrimitiveArray<'local, i8>;
Expand description

Lifetime’d representation of a crate::sys::jbyteArray which wraps a JObject reference

Aliased Type§

struct JByteArray<'local> { /* private fields */ }

Trait Implementations§

Source§

impl<'local> IntoJavaType<'local, JPrimitiveArray<'local, i8>> for JByteArray<'local>

Source§

fn into_java(self, _: &mut JNIEnv<'local>) -> JResult<JByteArray<'local>>

Source§

impl<'local> IntoRustType<'local, JPrimitiveArray<'local, i8>> for JByteArray<'local>

Source§

fn into_rust(self, _: &mut JNIEnv<'local>) -> JResult<JByteArray<'local>>

Source§

impl<'local> IntoRustType<'local, Vec<u8>> for JByteArray<'local>

Source§

fn into_rust(self, env: &mut JNIEnv<'local>) -> JResult<Vec<u8>>