pub enum DesktopEvent {
DesktopAdd(DesktopAddInfo),
DesktopRename(DesktopRenameInfo),
DesktopRemove(DesktopRemoveInfo),
DesktopSwap(DesktopSwapInfo),
DesktopTransfer(DesktopTransferInfo),
DesktopFocus(DesktopFocusInfo),
DesktopActivate(DesktopActivateInfo),
DesktopLayout(DesktopLayoutInfo),
}Variants§
DesktopAdd(DesktopAddInfo)
DesktopRename(DesktopRenameInfo)
DesktopRemove(DesktopRemoveInfo)
DesktopSwap(DesktopSwapInfo)
DesktopTransfer(DesktopTransferInfo)
DesktopFocus(DesktopFocusInfo)
DesktopActivate(DesktopActivateInfo)
DesktopLayout(DesktopLayoutInfo)
Trait Implementations§
Source§impl Debug for DesktopEvent
impl Debug for DesktopEvent
Auto Trait Implementations§
impl Freeze for DesktopEvent
impl RefUnwindSafe for DesktopEvent
impl Send for DesktopEvent
impl Sync for DesktopEvent
impl Unpin for DesktopEvent
impl UnsafeUnpin for DesktopEvent
impl UnwindSafe for DesktopEvent
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