#[repr(u64)]pub enum NSWindowOcclusionState {
Visible = 2,
}Expand description
Specifies whether the window is occluded.
Variants§
Visible = 2
If set, at least part of the window is visible; if not set, the entire window is occluded. A window that has a nonrectangular shape can be entirely occluded onscreen, but if its bounding box falls into a visible region, the window is considered to be visible. Note that a completely transparent window may also be considered visible.
Trait Implementations§
Source§impl Clone for NSWindowOcclusionState
impl Clone for NSWindowOcclusionState
Source§fn clone(&self) -> NSWindowOcclusionState
fn clone(&self) -> NSWindowOcclusionState
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 NSWindowOcclusionState
impl Debug for NSWindowOcclusionState
Source§impl PartialEq for NSWindowOcclusionState
impl PartialEq for NSWindowOcclusionState
impl Copy for NSWindowOcclusionState
impl Eq for NSWindowOcclusionState
impl StructuralPartialEq for NSWindowOcclusionState
Auto Trait Implementations§
impl Freeze for NSWindowOcclusionState
impl RefUnwindSafe for NSWindowOcclusionState
impl Send for NSWindowOcclusionState
impl Sync for NSWindowOcclusionState
impl Unpin for NSWindowOcclusionState
impl UnwindSafe for NSWindowOcclusionState
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