pub struct JThrowable<'a>(/* private fields */);
Expand description
Lifetime’d representation of a jthrowable
. Just a JObject
wrapped in a
new class.
Trait Implementations§
Source§impl<'a> Clone for JThrowable<'a>
impl<'a> Clone for JThrowable<'a>
Source§fn clone(&self) -> JThrowable<'a>
fn clone(&self) -> JThrowable<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a, 'b> Desc<'a, JThrowable<'a>> for &'b str
impl<'a, 'b> Desc<'a, JThrowable<'a>> for &'b str
Source§impl<'a> Desc<'a, JThrowable<'a>> for &'a str
impl<'a> Desc<'a, JThrowable<'a>> for &'a str
Source§impl<'a, M> Desc<'a, JThrowable<'a>> for (JClass<'a>, M)
impl<'a, M> Desc<'a, JThrowable<'a>> for (JClass<'a>, M)
Source§impl<'a> Desc<'a, JThrowable<'a>> for Exception
impl<'a> Desc<'a, JThrowable<'a>> for Exception
Source§impl<'a> Desc<'a, JThrowable<'a>> for JNIString
impl<'a> Desc<'a, JThrowable<'a>> for JNIString
Source§impl<'a> Desc<'a, JThrowable<'a>> for String
impl<'a> Desc<'a, JThrowable<'a>> for String
Source§impl<'a> From<JObject<'a>> for JThrowable<'a>
impl<'a> From<JObject<'a>> for JThrowable<'a>
Source§fn from(other: JObject<'_>) -> JThrowable<'_>
fn from(other: JObject<'_>) -> JThrowable<'_>
Converts to this type from the input type.
Source§impl<'a> From<JThrowable<'a>> for JObject<'a>
impl<'a> From<JThrowable<'a>> for JObject<'a>
Source§fn from(other: JThrowable<'_>) -> JObject<'_>
fn from(other: JThrowable<'_>) -> JObject<'_>
Converts to this type from the input type.
Source§impl<'a> Deref for JThrowable<'a>
impl<'a> Deref for JThrowable<'a>
impl<'a> Copy for JThrowable<'a>
Auto Trait Implementations§
impl<'a> Freeze for JThrowable<'a>
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more