pub enum ContextMenuAction {
Show 13 variants
CopyCurrentSelection = 0,
ReloadPage = 1,
OpenLink = 2,
OpenLinkInNewTab = 3,
NavigateBack = 4,
NavigateForward = 5,
UndoTextEdit = 6,
RedoTextEdit = 7,
CutTextSelection = 8,
PasteText = 9,
SelectAllText = 10,
OpenImage = 11,
OpenImageInNewTab = 12,
}Variants§
CopyCurrentSelection = 0
ReloadPage = 1
OpenLink = 2
OpenLinkInNewTab = 3
UndoTextEdit = 6
RedoTextEdit = 7
CutTextSelection = 8
PasteText = 9
SelectAllText = 10
OpenImage = 11
OpenImageInNewTab = 12
Trait Implementations§
Source§impl Clone for ContextMenuAction
impl Clone for ContextMenuAction
Source§fn clone(&self) -> ContextMenuAction
fn clone(&self) -> ContextMenuAction
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 moreimpl Copy for ContextMenuAction
Source§impl Debug for ContextMenuAction
impl Debug for ContextMenuAction
impl Eq for ContextMenuAction
Source§impl PartialEq for ContextMenuAction
impl PartialEq for ContextMenuAction
impl StructuralPartialEq for ContextMenuAction
Auto Trait Implementations§
impl Freeze for ContextMenuAction
impl RefUnwindSafe for ContextMenuAction
impl Send for ContextMenuAction
impl Sync for ContextMenuAction
impl Unpin for ContextMenuAction
impl UnsafeUnpin for ContextMenuAction
impl UnwindSafe for ContextMenuAction
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