#[repr(i64)]pub enum NSWindowOrderingMode {
Below = -1,
Out = 0,
Above = 1,
}
Expand description
Constants that let you specify how a window is ordered relative to another window.
Variants§
Below = -1
Moves the window below the indicated window.
Out = 0
Moves the window off the screen.
Above = 1
Moves the window above the indicated window.
Trait Implementations§
Source§impl Clone for NSWindowOrderingMode
impl Clone for NSWindowOrderingMode
Source§fn clone(&self) -> NSWindowOrderingMode
fn clone(&self) -> NSWindowOrderingMode
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NSWindowOrderingMode
impl Debug for NSWindowOrderingMode
Source§impl PartialEq for NSWindowOrderingMode
impl PartialEq for NSWindowOrderingMode
impl Copy for NSWindowOrderingMode
impl Eq for NSWindowOrderingMode
impl StructuralPartialEq for NSWindowOrderingMode
Auto Trait Implementations§
impl Freeze for NSWindowOrderingMode
impl RefUnwindSafe for NSWindowOrderingMode
impl Send for NSWindowOrderingMode
impl Sync for NSWindowOrderingMode
impl Unpin for NSWindowOrderingMode
impl UnwindSafe for NSWindowOrderingMode
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