pub enum NodeGraphGestureEvent {
ConnectStart(ConnectStart),
ConnectEnd(ConnectEnd),
NodeDragStart(NodeDragStart),
NodeDragUpdate(NodeDragUpdate),
NodeDragEnd(NodeDragEnd),
NodeResizeStart(NodeResizeStart),
NodeResizeUpdate(NodeResizeUpdate),
NodeResizeEnd(NodeResizeEnd),
ViewportMoveStart(ViewportMoveStart),
ViewportMove(ViewportMove),
ViewportMoveEnd(ViewportMoveEnd),
}Expand description
Transient UI gesture event emitted to gesture subscribers.
Variants§
ConnectStart(ConnectStart)
ConnectEnd(ConnectEnd)
NodeDragStart(NodeDragStart)
NodeDragUpdate(NodeDragUpdate)
NodeDragEnd(NodeDragEnd)
NodeResizeStart(NodeResizeStart)
NodeResizeUpdate(NodeResizeUpdate)
NodeResizeEnd(NodeResizeEnd)
ViewportMoveStart(ViewportMoveStart)
ViewportMove(ViewportMove)
ViewportMoveEnd(ViewportMoveEnd)
Trait Implementations§
Source§impl Clone for NodeGraphGestureEvent
impl Clone for NodeGraphGestureEvent
Source§fn clone(&self) -> NodeGraphGestureEvent
fn clone(&self) -> NodeGraphGestureEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NodeGraphGestureEvent
impl Debug for NodeGraphGestureEvent
Source§impl<'de> Deserialize<'de> for NodeGraphGestureEvent
impl<'de> Deserialize<'de> for NodeGraphGestureEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NodeGraphGestureEvent
impl PartialEq for NodeGraphGestureEvent
Source§fn eq(&self, other: &NodeGraphGestureEvent) -> bool
fn eq(&self, other: &NodeGraphGestureEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodeGraphGestureEvent
impl Serialize for NodeGraphGestureEvent
impl StructuralPartialEq for NodeGraphGestureEvent
Auto Trait Implementations§
impl Freeze for NodeGraphGestureEvent
impl RefUnwindSafe for NodeGraphGestureEvent
impl Send for NodeGraphGestureEvent
impl Sync for NodeGraphGestureEvent
impl Unpin for NodeGraphGestureEvent
impl UnsafeUnpin for NodeGraphGestureEvent
impl UnwindSafe for NodeGraphGestureEvent
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