pub enum OsAction {
Cut,
Copy,
Paste,
SelectAll,
Undo,
Redo,
}Expand description
A command that should be forwarded to the host OS when supported (e.g. menu integration).
Variants§
Trait Implementations§
impl Copy for OsAction
impl Eq for OsAction
impl StructuralPartialEq for OsAction
Auto Trait Implementations§
impl Freeze for OsAction
impl RefUnwindSafe for OsAction
impl Send for OsAction
impl Sync for OsAction
impl Unpin for OsAction
impl UnsafeUnpin for OsAction
impl UnwindSafe for OsAction
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