pub struct TableSortSpecs<'a> { /* private fields */ }Expand description
Table sort specs view.
Implementations§
Source§impl<'a> TableSortSpecs<'a>
impl<'a> TableSortSpecs<'a>
Sourcepub fn is_dirty(&self) -> bool
pub fn is_dirty(&self) -> bool
Whether the specs are marked dirty by dear imgui (you should resort your data).
Sourcepub fn clear_dirty(&mut self)
pub fn clear_dirty(&mut self)
Clear the dirty flag after you’ve applied sorting to your data.
pub fn is_empty(&self) -> bool
Sourcepub fn iter(&self) -> TableSortSpecsIter<'_> ⓘ
pub fn iter(&self) -> TableSortSpecsIter<'_> ⓘ
Iterate over column sort specs.
Auto Trait Implementations§
impl<'a> Freeze for TableSortSpecs<'a>
impl<'a> !RefUnwindSafe for TableSortSpecs<'a>
impl<'a> !Send for TableSortSpecs<'a>
impl<'a> !Sync for TableSortSpecs<'a>
impl<'a> Unpin for TableSortSpecs<'a>
impl<'a> !UnwindSafe for TableSortSpecs<'a>
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