pub struct JavaByteArray<'j>(/* private fields */);
Expand description
Implementations§
Source§impl<'j> JavaByteArray<'j>
impl<'j> JavaByteArray<'j>
Trait Implementations§
Source§impl<'j> Clone for JavaByteArray<'j>
impl<'j> Clone for JavaByteArray<'j>
Source§fn clone(&self) -> JavaByteArray<'j>
fn clone(&self) -> JavaByteArray<'j>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'j> Debug for JavaByteArray<'j>
impl<'j> Debug for JavaByteArray<'j>
Source§impl<'j> Deref for JavaByteArray<'j>
impl<'j> Deref for JavaByteArray<'j>
Source§impl<'j> From<JObject<'j>> for JavaByteArray<'j>
impl<'j> From<JObject<'j>> for JavaByteArray<'j>
Source§impl<'j> From<JavaByteArray<'j>> for JObject<'j>
impl<'j> From<JavaByteArray<'j>> for JObject<'j>
Source§fn from(jarray: JavaByteArray<'j>) -> Self
fn from(jarray: JavaByteArray<'j>) -> Self
Converts to this type from the input type.
Source§impl<'j> FromJavaToRust<'j, JavaByteArray<'j>> for JavaByteArray<'j>
Rather than implementing any conversions, the ByteArrays allow present low level options to make the best decision for performance
impl<'j> FromJavaToRust<'j, JavaByteArray<'j>> for JavaByteArray<'j>
Rather than implementing any conversions, the ByteArrays allow present low level options to make the best decision for performance
fn java_to_rust(java: Self, _env: JNIEnv<'j>) -> Self
Source§impl<'j> FromRustToJava<'j, JavaByteArray<'j>> for JavaByteArray<'j>
Rather than implementing any conversions, the ByteArrays allow present low level options to make the best decision for performance
impl<'j> FromRustToJava<'j, JavaByteArray<'j>> for JavaByteArray<'j>
Rather than implementing any conversions, the ByteArrays allow present low level options to make the best decision for performance
fn rust_to_java(rust: Self, _env: JNIEnv<'j>) -> Self
impl<'j> Copy for JavaByteArray<'j>
Auto Trait Implementations§
impl<'j> Freeze for JavaByteArray<'j>
impl<'j> RefUnwindSafe for JavaByteArray<'j>
impl<'j> !Send for JavaByteArray<'j>
impl<'j> !Sync for JavaByteArray<'j>
impl<'j> Unpin for JavaByteArray<'j>
impl<'j> UnwindSafe for JavaByteArray<'j>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more