pub struct JClass<'a>(/* private fields */);
Expand description
Lifetime’d representation of a jclass
. Just a JObject
wrapped in a new
class.
Trait Implementations§
Source§impl<'a> AutoDeallocateBuilder<'a, JClass<'a>> for MutAutoDeallocateObjectArrayBuilder<jclass>
impl<'a> AutoDeallocateBuilder<'a, JClass<'a>> for MutAutoDeallocateObjectArrayBuilder<jclass>
Source§impl<'a, 'b, 'c> Desc<'a, JClass<'b>> for &'b AutoLocal<'c, '_>where
'c: 'b,
This conversion assumes that the AutoLocal
is a pointer to a class object.
impl<'a, 'b, 'c> Desc<'a, JClass<'b>> for &'b AutoLocal<'c, '_>where
'c: 'b,
This conversion assumes that the AutoLocal
is a pointer to a class object.
Source§impl<'a, 'b> Desc<'a, JClass<'b>> for &'b GlobalRef
This conversion assumes that the GlobalRef
is a pointer to a class object.
impl<'a, 'b> Desc<'a, JClass<'b>> for &'b GlobalRef
This conversion assumes that the GlobalRef
is a pointer to a class object.
Source§impl<'a> From<JObject<'a>> for JClass<'a>
This conversion assumes that the JObject
is a pointer to a class object.
impl<'a> From<JObject<'a>> for JClass<'a>
This conversion assumes that the JObject
is a pointer to a class object.
impl<'a> Copy for JClass<'a>
Auto Trait Implementations§
impl<'a> Freeze for JClass<'a>
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§
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