pub enum JniBasicType<'a> {
Byte,
Char,
Double,
Float,
Int,
Long,
Class(&'a str),
Short,
Boolean,
}Variants§
Trait Implementations§
Source§impl<'a> Clone for JniBasicType<'a>
impl<'a> Clone for JniBasicType<'a>
Source§fn clone(&self) -> JniBasicType<'a>
fn clone(&self) -> JniBasicType<'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> Debug for JniBasicType<'a>
impl<'a> Debug for JniBasicType<'a>
Source§impl<'a> Hash for JniBasicType<'a>
impl<'a> Hash for JniBasicType<'a>
Source§impl<'a> Ord for JniBasicType<'a>
impl<'a> Ord for JniBasicType<'a>
Source§fn cmp(&self, other: &JniBasicType<'a>) -> Ordering
fn cmp(&self, other: &JniBasicType<'a>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialEq for JniBasicType<'a>
impl<'a> PartialEq for JniBasicType<'a>
Source§impl<'a> PartialOrd for JniBasicType<'a>
impl<'a> PartialOrd for JniBasicType<'a>
impl<'a> Copy for JniBasicType<'a>
impl<'a> Eq for JniBasicType<'a>
impl<'a> StructuralPartialEq for JniBasicType<'a>
Auto Trait Implementations§
impl<'a> Freeze for JniBasicType<'a>
impl<'a> RefUnwindSafe for JniBasicType<'a>
impl<'a> Send for JniBasicType<'a>
impl<'a> Sync for JniBasicType<'a>
impl<'a> Unpin for JniBasicType<'a>
impl<'a> UnwindSafe for JniBasicType<'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