Struct jni::objects::JByteBuffer
source · [−]#[repr(transparent)]pub struct JByteBuffer<'a>(_);
Expand description
Lifetime’d representation of a jobject
that is an instance of the
ByteBuffer Java class. Just a JObject
wrapped in a new class.
Trait Implementations
sourceimpl<'a> Clone for JByteBuffer<'a>
impl<'a> Clone for JByteBuffer<'a>
sourcefn clone(&self) -> JByteBuffer<'a>
fn clone(&self) -> JByteBuffer<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Deref for JByteBuffer<'a>
impl<'a> Deref for JByteBuffer<'a>
sourceimpl<'a> From<*mut _jobject> for JByteBuffer<'a>
impl<'a> From<*mut _jobject> for JByteBuffer<'a>
sourceimpl<'a> From<JByteBuffer<'a>> for JObject<'a>
impl<'a> From<JByteBuffer<'a>> for JObject<'a>
sourcefn from(other: JByteBuffer<'_>) -> JObject<'_>
fn from(other: JByteBuffer<'_>) -> JObject<'_>
Converts to this type from the input type.
sourceimpl<'a> From<JObject<'a>> for JByteBuffer<'a>
impl<'a> From<JObject<'a>> for JByteBuffer<'a>
sourcefn from(other: JObject<'_>) -> JByteBuffer<'_>
fn from(other: JObject<'_>) -> JByteBuffer<'_>
Converts to this type from the input type.
impl<'a> Copy for JByteBuffer<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for JByteBuffer<'a>
impl<'a> !Send for JByteBuffer<'a>
impl<'a> !Sync for JByteBuffer<'a>
impl<'a> Unpin for JByteBuffer<'a>
impl<'a> UnwindSafe for JByteBuffer<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more