Struct arcdps_imgui::TableColumnSetup
source · pub struct TableColumnSetup<'a, Name> {
pub name: Name,
pub flags: TableColumnFlags,
pub init_width_or_weight: f32,
pub user_id: Id<'a>,
}
Expand description
A struct containing all the data needed to setup a table column header via begin_table_header or table_setup_column.
Fields§
§name: Name
The name of column to be displayed to users.
flags: TableColumnFlags
The flags this column will have.
init_width_or_weight: f32
The width or weight of the given column.
user_id: Id<'a>
A user_id, primarily used in sorting operations.
Implementations§
Trait Implementations§
source§impl<'a, Name: Debug> Debug for TableColumnSetup<'a, Name>
impl<'a, Name: Debug> Debug for TableColumnSetup<'a, Name>
source§impl<'a, Name: Default> Default for TableColumnSetup<'a, Name>
impl<'a, Name: Default> Default for TableColumnSetup<'a, Name>
source§fn default() -> TableColumnSetup<'a, Name>
fn default() -> TableColumnSetup<'a, Name>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a, Name> Freeze for TableColumnSetup<'a, Name>where
Name: Freeze,
impl<'a, Name> RefUnwindSafe for TableColumnSetup<'a, Name>where
Name: RefUnwindSafe,
impl<'a, Name> !Send for TableColumnSetup<'a, Name>
impl<'a, Name> !Sync for TableColumnSetup<'a, Name>
impl<'a, Name> Unpin for TableColumnSetup<'a, Name>where
Name: Unpin,
impl<'a, Name> UnwindSafe for TableColumnSetup<'a, Name>where
Name: UnwindSafe,
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