Enum freya::prelude::EditableEvent
pub enum EditableEvent {
Click,
MouseOver(Rc<MouseData, Global>, usize),
MouseDown(Rc<MouseData, Global>, usize),
KeyDown(Rc<KeyboardData, Global>),
}
Expand description
Events emitted to the UseEditable
.
Variants§
Click
MouseOver(Rc<MouseData, Global>, usize)
MouseDown(Rc<MouseData, Global>, usize)
KeyDown(Rc<KeyboardData, Global>)
Auto Trait Implementations§
impl RefUnwindSafe for EditableEvent
impl !Send for EditableEvent
impl !Sync for EditableEvent
impl Unpin for EditableEvent
impl UnwindSafe for EditableEvent
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