pub enum InteractionMode {
Select,
Pan,
Draw,
Voice,
}Expand description
Interaction mode for direct manipulation.
Variants§
Select
Default mode - select and manipulate elements.
Pan
Pan/zoom the canvas.
Draw
Drawing mode (for annotations).
Voice
Voice command active.
Trait Implementations§
Source§impl Clone for InteractionMode
impl Clone for InteractionMode
Source§fn clone(&self) -> InteractionMode
fn clone(&self) -> InteractionMode
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 InteractionMode
impl Debug for InteractionMode
Source§impl<'de> Deserialize<'de> for InteractionMode
impl<'de> Deserialize<'de> for InteractionMode
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 InteractionMode
impl PartialEq for InteractionMode
Source§impl Serialize for InteractionMode
impl Serialize for InteractionMode
impl Copy for InteractionMode
impl Eq for InteractionMode
impl StructuralPartialEq for InteractionMode
Auto Trait Implementations§
impl Freeze for InteractionMode
impl RefUnwindSafe for InteractionMode
impl Send for InteractionMode
impl Sync for InteractionMode
impl Unpin for InteractionMode
impl UnwindSafe for InteractionMode
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