pub struct TableProps<T>where
T: TableData,{
pub columns: Vec<Column>,
pub data: Vec<T>,
pub options: Option<TableOptions>,
}Expand description
Properties of the Table component.
Fields§
§columns: Vec<Column>§data: Vec<T>§options: Option<TableOptions>Trait Implementations§
Source§impl<T> Clone for TableProps<T>
impl<T> Clone for TableProps<T>
Source§fn clone(&self) -> TableProps<T>
fn clone(&self) -> TableProps<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T> Default for TableProps<T>
impl<T> Default for TableProps<T>
Source§fn default() -> TableProps<T>
fn default() -> TableProps<T>
Returns the “default value” for a type. Read more
Source§impl<T> PartialEq for TableProps<T>
impl<T> PartialEq for TableProps<T>
impl<T> StructuralPartialEq for TableProps<T>where
T: TableData,
Auto Trait Implementations§
impl<T> Freeze for TableProps<T>
impl<T> RefUnwindSafe for TableProps<T>where
T: RefUnwindSafe,
impl<T> Send for TableProps<T>where
T: Send,
impl<T> Sync for TableProps<T>where
T: Sync,
impl<T> Unpin for TableProps<T>where
T: Unpin,
impl<T> UnwindSafe for TableProps<T>where
T: 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