Enum window_inner::WindowMovingStatus
source · pub enum WindowMovingStatus {
Stationary,
Moving(Coord),
}
Expand description
Whether a window is moving (being dragged by the mouse).
Variants§
Stationary
The window is not in motion.
Moving(Coord)
The window is currently in motion.
The enclosed Coord
represents the initial position of the window before it started moving.
Auto Trait Implementations§
impl RefUnwindSafe for WindowMovingStatus
impl Send for WindowMovingStatus
impl Sync for WindowMovingStatus
impl Unpin for WindowMovingStatus
impl UnwindSafe for WindowMovingStatus
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