pub enum RowAction {
Edit(usize),
Delete(usize),
Save(usize),
Cancel(usize),
}Expand description
Actions that can be performed on data table rows.
Variants§
Edit(usize)
User clicked edit button for the specified row
Delete(usize)
User clicked delete button for the specified row
Save(usize)
User clicked save button for the specified row
Cancel(usize)
User clicked cancel button for the specified row
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RowAction
impl RefUnwindSafe for RowAction
impl Send for RowAction
impl Sync for RowAction
impl Unpin for RowAction
impl UnsafeUnpin for RowAction
impl UnwindSafe for RowAction
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