[][src]Struct raw_window_handle::ios::IOSHandle

pub struct IOSHandle {
    pub ui_window: *mut c_void,
    pub ui_view: *mut c_void,
    pub ui_view_controller: *mut c_void,
    // some fields omitted
}
This is supported on iOS only.

Raw window handle for iOS.

Construction

let handle = IOSHandle {
    /* fields */
    ..IOSHandle::empty()
};

Fields

ui_window: *mut c_void
This is supported on iOS only.
ui_view: *mut c_void
This is supported on iOS only.
ui_view_controller: *mut c_void
This is supported on iOS only.

Methods

impl IOSHandle[src]

pub fn empty() -> IOSHandle[src]

This is supported on iOS only.

Trait Implementations

impl Debug for IOSHandle[src]

impl PartialEq<IOSHandle> for IOSHandle[src]

impl Eq for IOSHandle[src]

impl Hash for IOSHandle[src]

impl Copy for IOSHandle[src]

impl StructuralPartialEq for IOSHandle[src]

impl StructuralEq for IOSHandle[src]

impl Clone for IOSHandle[src]

Auto Trait Implementations

impl Unpin for IOSHandle

impl !Send for IOSHandle

impl !Sync for IOSHandle

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]