#[repr(transparent)]pub struct JavaBoolean(pub jboolean);
Expand description
Boolean
Tuple Fields§
§0: jboolean
Trait Implementations§
Source§impl Clone for JavaBoolean
impl Clone for JavaBoolean
Source§fn clone(&self) -> JavaBoolean
fn clone(&self) -> JavaBoolean
Returns a copy 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 Debug for JavaBoolean
impl Debug for JavaBoolean
Source§impl Default for JavaBoolean
impl Default for JavaBoolean
Source§fn default() -> JavaBoolean
fn default() -> JavaBoolean
Returns the “default value” for a type. Read more
Source§impl FromJavaToRust<'_, JavaBoolean> for bool
impl FromJavaToRust<'_, JavaBoolean> for bool
fn java_to_rust(java: JavaBoolean, _env: JNIEnv<'_>) -> Self
Source§impl FromRustToJava<'_, bool> for JavaBoolean
impl FromRustToJava<'_, bool> for JavaBoolean
fn rust_to_java(rust: bool, _env: JNIEnv<'_>) -> Self
impl Copy for JavaBoolean
Auto Trait Implementations§
impl Freeze for JavaBoolean
impl RefUnwindSafe for JavaBoolean
impl Send for JavaBoolean
impl Sync for JavaBoolean
impl Unpin for JavaBoolean
impl UnwindSafe for JavaBoolean
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