Struct freya::components::TableProps
source · pub struct TableProps<'a> { /* private fields */ }Expand description
Table component properties.
Implementations§
source§impl<'a> TableProps<'a>
impl<'a> TableProps<'a>
sourcepub fn builder() -> TablePropsBuilder<'a, ((), (), (), (), ())>
pub fn builder() -> TablePropsBuilder<'a, ((), (), (), (), ())>
Create a builder for building TableProps.
On the builder, call .columns(...), .children(...)(optional), .height(...)(optional), .corner_radius(...)(optional), .shadow(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of TableProps.
Trait Implementations§
source§impl<'a> Properties for TableProps<'a>
impl<'a> Properties for TableProps<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for TableProps<'a>
impl<'a> !Send for TableProps<'a>
impl<'a> !Sync for TableProps<'a>
impl<'a> Unpin for TableProps<'a>
impl<'a> !UnwindSafe for TableProps<'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