[][src]Struct uni_tmp_jni::objects::JClass

#[repr(transparent)]pub struct JClass<'a>(_);

Lifetime'd representation of a jclass. Just a JObject wrapped in a new class.

Methods from Deref<Target = JObject<'a>>

Trait Implementations

impl<'a> Clone for JClass<'a>[src]

impl<'a> Copy for JClass<'a>[src]

impl<'a> Debug for JClass<'a>[src]

impl<'a> Deref for JClass<'a>[src]

type Target = JObject<'a>

The resulting type after dereferencing.

impl<'a, T> Desc<'a, JClass<'a>> for T where
    T: Into<JNIString>, 
[src]

impl<'a, 'b> Desc<'a, JClass<'a>> for JObject<'b>[src]

impl<'a, 'b> Desc<'a, JClass<'b>> for &'b GlobalRef[src]

This conversion assumes that the GlobalRef is a pointer to a class object.

impl<'a, 'b, 'c, '_> Desc<'a, JClass<'b>> for &'b AutoLocal<'c, '_> where
    'c: 'b, 
[src]

This conversion assumes that the AutoLocal is a pointer to a class object.

impl<'a> From<*mut _jobject> for JClass<'a>[src]

impl<'a> From<JClass<'a>> for JObject<'a>[src]

impl<'a> From<JObject<'a>> for JClass<'a>[src]

This conversion assumes that the JObject is a pointer to a class object.

Auto Trait Implementations

impl<'a> RefUnwindSafe for JClass<'a>

impl<'a> !Send for JClass<'a>

impl<'a> !Sync for JClass<'a>

impl<'a> Unpin for JClass<'a>

impl<'a> UnwindSafe for JClass<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.