Struct jni::objects::JThrowable
source · [−]#[repr(transparent)]pub struct JThrowable<'a>(_);
Expand description
Lifetime’d representation of a jthrowable
. Just a JObject
wrapped in a
new class.
Trait Implementations
sourceimpl<'a> Clone for JThrowable<'a>
impl<'a> Clone for JThrowable<'a>
sourcefn clone(&self) -> JThrowable<'a>
fn clone(&self) -> JThrowable<'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 JThrowable<'a>
impl<'a> Deref for JThrowable<'a>
sourceimpl<'a, 'c, C, M> Desc<'a, JThrowable<'a>> for (C, M) where
C: Desc<'a, JClass<'c>>,
M: Into<JNIString>,
impl<'a, 'c, C, M> Desc<'a, JThrowable<'a>> for (C, M) where
C: Desc<'a, JClass<'c>>,
M: Into<JNIString>,
sourcefn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
Look up the concrete type from the JVM.
sourceimpl<'a> Desc<'a, JThrowable<'a>> for Exception
impl<'a> Desc<'a, JThrowable<'a>> for Exception
sourcefn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
Look up the concrete type from the JVM.
sourceimpl<'a, 'b> Desc<'a, JThrowable<'a>> for &'b str
impl<'a, 'b> Desc<'a, JThrowable<'a>> for &'b str
sourcefn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
Look up the concrete type from the JVM.
sourceimpl<'a> Desc<'a, JThrowable<'a>> for String
impl<'a> Desc<'a, JThrowable<'a>> for String
sourcefn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
Look up the concrete type from the JVM.
sourceimpl<'a, 'b> Desc<'a, JThrowable<'a>> for JNIString
impl<'a, 'b> Desc<'a, JThrowable<'a>> for JNIString
sourcefn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>>
Look up the concrete type from the JVM.
sourceimpl<'a> From<*mut _jobject> for JThrowable<'a>
impl<'a> From<*mut _jobject> for JThrowable<'a>
sourcefn from(other: jthrowable) -> Self
fn from(other: jthrowable) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<JObject<'a>> for JThrowable<'a>
impl<'a> From<JObject<'a>> for JThrowable<'a>
sourcefn from(other: JObject<'_>) -> JThrowable<'_>
fn from(other: JObject<'_>) -> JThrowable<'_>
Converts to this type from the input type.
sourceimpl<'a> From<JThrowable<'a>> for JObject<'a>
impl<'a> From<JThrowable<'a>> for JObject<'a>
sourcefn from(other: JThrowable<'_>) -> JObject<'_>
fn from(other: JThrowable<'_>) -> JObject<'_>
Converts to this type from the input type.
impl<'a> Copy for JThrowable<'a>
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
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