[−][src]Struct polyhorn_android::raw::jni::JObject
Wrapper around sys::jobject that adds a lifetime. This prevents it from
outliving the context in which it was acquired and getting GC'd out from
under us. It matches C's representation of the raw pointer, so it can be
used in any of the extern function argument positions that would take a
jobject.
Most other types in the objects module deref to this, as they do in the C
representation.
Implementations
impl<'a> JObject<'a>[src]
pub fn into_inner(self) -> *mut _jobject[src]
Unwrap to the internal jni type.
pub fn null() -> JObject<'a>[src]
Creates a new null object
Methods from Deref<Target = *mut _jobject>
Trait Implementations
impl<'a> Clone for JObject<'a>[src]
impl<'a> Copy for JObject<'a>[src]
impl<'a> Debug for JObject<'a>[src]
impl<'a> Deref for JObject<'a>[src]
type Target = *mut _jobject
The resulting type after dereferencing.
fn deref(&self) -> &<JObject<'a> as Deref>::Target[src]
impl<'a, 'b> Desc<'a, JClass<'a>> for JObject<'b>[src]
impl<'a, '_> From<&'a AutoLocal<'a, '_>> for JObject<'a>[src]
impl<'a> From<&'a GlobalRef> for JObject<'a>[src]
impl<'a> From<*mut _jobject> for JObject<'a>[src]
impl<'a> From<JByteBuffer<'a>> for JObject<'a>[src]
fn from(other: JByteBuffer<'_>) -> JObject<'_>[src]
impl<'a> From<JClass<'a>> for JObject<'a>[src]
impl<'a, 'b> From<JList<'a, 'b>> for JObject<'a> where
'a: 'b, [src]
'a: 'b,
impl<'a, 'b> From<JMap<'a, 'b>> for JObject<'a> where
'a: 'b, [src]
'a: 'b,
impl<'a> From<JString<'a>> for JObject<'a>[src]
impl<'a> From<JThrowable<'a>> for JObject<'a>[src]
fn from(other: JThrowable<'_>) -> JObject<'_>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for JObject<'a>
impl<'a> !Send for JObject<'a>
impl<'a> !Sync for JObject<'a>
impl<'a> Unpin for JObject<'a>
impl<'a> UnwindSafe for JObject<'a>
Blanket Implementations
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float, [src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>, [src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> AsAny for T where
T: Any, [src]
T: Any,
fn as_any(&self) -> &(dyn Any + 'static)[src]
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]
fn type_name(&self) -> &'static str[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> ConvertInto<U> for T where
U: ConvertFrom<T>, [src]
U: ConvertFrom<T>,
fn convert_into(self) -> U[src]
fn convert_unclamped_into(self) -> U[src]
fn try_convert_into(self) -> Result<U, OutOfBounds<U>>[src]
impl<'a, T> Desc<'a, JClass<'a>> for T where
T: Into<JNIString>, [src]
T: Into<JNIString>,
impl<'a, T> Desc<'a, T> for T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,