#[repr(C)]pub struct IOSHandle {
pub ui_window: *mut c_void,
pub ui_view: *mut c_void,
pub ui_view_controller: *mut c_void,
}Fields§
§ui_window: *mut c_void§ui_view: *mut c_void§ui_view_controller: *mut c_voidTrait Implementations§
Source§impl Ord for IOSHandle
impl Ord for IOSHandle
Source§impl PartialOrd for IOSHandle
impl PartialOrd for IOSHandle
impl Copy for IOSHandle
impl Eq for IOSHandle
impl StructuralPartialEq for IOSHandle
Auto Trait Implementations§
impl Freeze for IOSHandle
impl RefUnwindSafe for IOSHandle
impl !Send for IOSHandle
impl !Sync for IOSHandle
impl Unpin for IOSHandle
impl UnwindSafe for IOSHandle
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