pub enum SelectMode {
Row,
Cell,
}Expand description
Controls whether a table selection targets rows or individual cells.
Variants§
Trait Implementations§
Source§impl Clone for SelectMode
impl Clone for SelectMode
Source§fn clone(&self) -> SelectMode
fn clone(&self) -> SelectMode
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 SelectMode
Source§impl Debug for SelectMode
impl Debug for SelectMode
impl Eq for SelectMode
Source§impl PartialEq for SelectMode
impl PartialEq for SelectMode
Source§fn eq(&self, other: &SelectMode) -> bool
fn eq(&self, other: &SelectMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SelectMode
Auto Trait Implementations§
impl Freeze for SelectMode
impl RefUnwindSafe for SelectMode
impl Send for SelectMode
impl Sync for SelectMode
impl Unpin for SelectMode
impl UnsafeUnpin for SelectMode
impl UnwindSafe for SelectMode
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