pub struct Grouped {
pub from: u32,
pub to: u32,
pub display: bool,
}Expand description
Describes a row/column group.
Fields§
§from: u32Inclusive from row/col.
to: u32Inclusive to row/col.
display: boolVisible/Collapsed state.
Implementations§
Trait Implementations§
Source§impl GetSize for Grouped
impl GetSize for Grouped
Source§fn get_heap_size(&self) -> usize
fn get_heap_size(&self) -> usize
Determines how many bytes this object occupies inside the heap. Read more
Source§fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>(
&self,
tracker: TRACKER,
) -> (usize, TRACKER)
fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>( &self, tracker: TRACKER, ) -> (usize, TRACKER)
Determines how many bytes this object occupies inside the heap while using a
tracker. Read moreSource§fn get_stack_size() -> usize
fn get_stack_size() -> usize
Determines how may bytes this object occupies inside the stack. Read more
Source§fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
Determines the total size of the object while using a
tracker. Read moreimpl Copy for Grouped
impl StructuralPartialEq for Grouped
Auto Trait Implementations§
impl Freeze for Grouped
impl RefUnwindSafe for Grouped
impl Send for Grouped
impl Sync for Grouped
impl Unpin for Grouped
impl UnwindSafe for Grouped
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