1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use objects::JObject;

use sys::jobject;

/// Lifetime'd representation of a `jobject` that is an instance of the
/// ByteBuffer Java class. Just a `JObject` wrapped in a new class.
#[repr(C)]
#[derive(Clone, Copy)]
pub struct JByteBuffer<'a>(JObject<'a>);

impl<'a> From<jobject> for JByteBuffer<'a> {
    fn from(other: jobject) -> Self {
        JByteBuffer(From::from(other))
    }
}

impl<'a> ::std::ops::Deref for JByteBuffer<'a> {
    type Target = JObject<'a>;

    fn deref(&self) -> &Self::Target {
        &self.0
    }
}

impl<'a> From<JByteBuffer<'a>> for JObject<'a> {
    fn from(other: JByteBuffer) -> JObject {
        other.0
    }
}

impl<'a> From<JObject<'a>> for JByteBuffer<'a> {
    fn from(other: JObject) -> JByteBuffer {
        (other.into_inner() as jobject).into()
    }
}