[][src]Struct jni::objects::JThrowable

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

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

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

Trait Implementations

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

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

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

type Target = JObject<'a>

The resulting type after dereferencing.

impl<'a, 'c, C, M> Desc<'a, JThrowable<'a>> for (C, M) where
    C: Desc<'a, JClass<'c>>,
    M: Into<JNIString>, 
[src]

impl<'a> Desc<'a, JThrowable<'a>> for Exception[src]

impl<'a, 'b> Desc<'a, JThrowable<'a>> for &'b str[src]

impl<'a> Desc<'a, JThrowable<'a>> for String[src]

impl<'a, 'b> Desc<'a, JThrowable<'a>> for JNIString[src]

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for JThrowable<'a>

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

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

impl<'a> Unpin for JThrowable<'a>

impl<'a> UnwindSafe for JThrowable<'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.