pub enum DesignerViewAction {
None,
SwapComponents {
comp: LiveId,
next_comp: LiveId,
},
Selected {
id: LiveId,
km: KeyModifiers,
tap_count: u32,
},
}Variants§
Trait Implementations§
Source§impl ActionDefaultRef for DesignerViewAction
impl ActionDefaultRef for DesignerViewAction
fn default_ref() -> &'static Self
Source§impl Clone for DesignerViewAction
impl Clone for DesignerViewAction
Source§fn clone(&self) -> DesignerViewAction
fn clone(&self) -> DesignerViewAction
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 DesignerViewAction
impl Debug for DesignerViewAction
Auto Trait Implementations§
impl Freeze for DesignerViewAction
impl RefUnwindSafe for DesignerViewAction
impl Send for DesignerViewAction
impl Sync for DesignerViewAction
impl Unpin for DesignerViewAction
impl UnwindSafe for DesignerViewAction
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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