#[repr(u32)]pub enum LineEditMenuItems {
MenuCut = 0,
MenuCopy = 1,
MenuPaste = 2,
MenuClear = 3,
MenuSelectAll = 4,
MenuUndo = 5,
MenuRedo = 6,
MenuMax = 7,
}
Variants§
MenuCut = 0
MenuCopy = 1
MenuPaste = 2
MenuClear = 3
MenuSelectAll = 4
MenuUndo = 5
MenuRedo = 6
MenuMax = 7
Trait Implementations§
Source§impl Clone for LineEditMenuItems
impl Clone for LineEditMenuItems
Source§fn clone(&self) -> LineEditMenuItems
fn clone(&self) -> LineEditMenuItems
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 LineEditMenuItems
impl Debug for LineEditMenuItems
Source§impl Hash for LineEditMenuItems
impl Hash for LineEditMenuItems
Source§impl PartialEq for LineEditMenuItems
impl PartialEq for LineEditMenuItems
impl Copy for LineEditMenuItems
impl Eq for LineEditMenuItems
impl StructuralPartialEq for LineEditMenuItems
Auto Trait Implementations§
impl Freeze for LineEditMenuItems
impl RefUnwindSafe for LineEditMenuItems
impl Send for LineEditMenuItems
impl Sync for LineEditMenuItems
impl Unpin for LineEditMenuItems
impl UnwindSafe for LineEditMenuItems
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