#[repr(C)]pub struct AndroidHandle {
pub a_native_window: *mut c_void,
}Fields§
§a_native_window: *mut c_voidA pointer to an ANativeWindow.
Trait Implementations§
Source§impl Clone for AndroidHandle
impl Clone for AndroidHandle
Source§fn clone(&self) -> AndroidHandle
fn clone(&self) -> AndroidHandle
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 Debug for AndroidHandle
impl Debug for AndroidHandle
Source§impl Hash for AndroidHandle
impl Hash for AndroidHandle
Source§impl Ord for AndroidHandle
impl Ord for AndroidHandle
Source§fn cmp(&self, other: &AndroidHandle) -> Ordering
fn cmp(&self, other: &AndroidHandle) -> 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 PartialEq for AndroidHandle
impl PartialEq for AndroidHandle
Source§impl PartialOrd for AndroidHandle
impl PartialOrd for AndroidHandle
impl Copy for AndroidHandle
impl Eq for AndroidHandle
impl StructuralPartialEq for AndroidHandle
Auto Trait Implementations§
impl Freeze for AndroidHandle
impl RefUnwindSafe for AndroidHandle
impl !Send for AndroidHandle
impl !Sync for AndroidHandle
impl Unpin for AndroidHandle
impl UnwindSafe for AndroidHandle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more