pub struct TableColumnSetup<Name: AsRef<str>> {
pub name: Name,
pub flags: TableColumnFlags,
pub init_width_or_weight: f32,
pub user_id: u32,
}Expand description
Table column setup information
Fields§
§name: Name§flags: TableColumnFlags§init_width_or_weight: f32§user_id: u32Implementations§
Source§impl<Name: AsRef<str>> TableColumnSetup<Name>
impl<Name: AsRef<str>> TableColumnSetup<Name>
Trait Implementations§
Auto Trait Implementations§
impl<Name> Freeze for TableColumnSetup<Name>where
Name: Freeze,
impl<Name> RefUnwindSafe for TableColumnSetup<Name>where
Name: RefUnwindSafe,
impl<Name> Send for TableColumnSetup<Name>where
Name: Send,
impl<Name> Sync for TableColumnSetup<Name>where
Name: Sync,
impl<Name> Unpin for TableColumnSetup<Name>where
Name: Unpin,
impl<Name> UnwindSafe for TableColumnSetup<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