pub enum TableHoveredRow {
None,
Row(TableRowIndex),
}Expand description
Result of [Ui::table_get_hovered_row].
Variants§
Implementations§
Source§impl TableHoveredRow
impl TableHoveredRow
Sourcepub const fn row(self) -> Option<TableRowIndex>
pub const fn row(self) -> Option<TableRowIndex>
Return the hovered concrete row, if any.
Trait Implementations§
Source§impl Clone for TableHoveredRow
impl Clone for TableHoveredRow
Source§fn clone(&self) -> TableHoveredRow
fn clone(&self) -> TableHoveredRow
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 moreSource§impl Debug for TableHoveredRow
impl Debug for TableHoveredRow
Source§impl Hash for TableHoveredRow
impl Hash for TableHoveredRow
Source§impl PartialEq for TableHoveredRow
impl PartialEq for TableHoveredRow
Source§fn eq(&self, other: &TableHoveredRow) -> bool
fn eq(&self, other: &TableHoveredRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TableHoveredRow
impl Eq for TableHoveredRow
impl StructuralPartialEq for TableHoveredRow
Auto Trait Implementations§
impl Freeze for TableHoveredRow
impl RefUnwindSafe for TableHoveredRow
impl Send for TableHoveredRow
impl Sync for TableHoveredRow
impl Unpin for TableHoveredRow
impl UnsafeUnpin for TableHoveredRow
impl UnwindSafe for TableHoveredRow
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