pub enum WindowMove<'a> {
Monitor(MonitorIdentifier<'a>),
Direction(Direction),
}Expand description
This enum is the params to MoveWindow dispatcher
Variants§
Monitor(MonitorIdentifier<'a>)
Moves the window to a specified monitor
Direction(Direction)
Moves the window in a specified direction
Trait Implementations§
Source§impl<'a> Clone for WindowMove<'a>
impl<'a> Clone for WindowMove<'a>
Source§fn clone(&self) -> WindowMove<'a>
fn clone(&self) -> WindowMove<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for WindowMove<'a>
impl<'a> RefUnwindSafe for WindowMove<'a>
impl<'a> Send for WindowMove<'a>
impl<'a> Sync for WindowMove<'a>
impl<'a> Unpin for WindowMove<'a>
impl<'a> UnwindSafe for WindowMove<'a>
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