#[repr(C)]pub struct MacOSHandle {
pub ns_window: *mut c_void,
pub ns_view: *mut c_void,
}Fields§
§ns_window: *mut c_void§ns_view: *mut c_voidTrait Implementations§
Source§impl Clone for MacOSHandle
impl Clone for MacOSHandle
Source§fn clone(&self) -> MacOSHandle
fn clone(&self) -> MacOSHandle
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 MacOSHandle
impl Debug for MacOSHandle
Source§impl Hash for MacOSHandle
impl Hash for MacOSHandle
Source§impl Ord for MacOSHandle
impl Ord for MacOSHandle
Source§fn cmp(&self, other: &MacOSHandle) -> Ordering
fn cmp(&self, other: &MacOSHandle) -> 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 MacOSHandle
impl PartialEq for MacOSHandle
Source§impl PartialOrd for MacOSHandle
impl PartialOrd for MacOSHandle
impl Copy for MacOSHandle
impl Eq for MacOSHandle
impl StructuralPartialEq for MacOSHandle
Auto Trait Implementations§
impl Freeze for MacOSHandle
impl RefUnwindSafe for MacOSHandle
impl !Send for MacOSHandle
impl !Sync for MacOSHandle
impl Unpin for MacOSHandle
impl UnwindSafe for MacOSHandle
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