Struct thaw::TableProps
source · pub struct TableProps {
pub style: MaybeSignal<String>,
pub single_row: MaybeSignal<bool>,
pub single_column: MaybeSignal<bool>,
pub children: Children,
}Expand description
Props for the Table component.
Required Props
- children:
Children
Optional Props
- style:
impl Into<MaybeSignal<String>> - single_row:
impl Into<MaybeSignal<bool>> - single_column:
impl Into<MaybeSignal<bool>>
Fields§
§style: MaybeSignal<String>§single_row: MaybeSignal<bool>§single_column: MaybeSignal<bool>§children: ChildrenImplementations§
source§impl TableProps
impl TableProps
sourcepub fn builder() -> TablePropsBuilder<((), (), (), ())>
pub fn builder() -> TablePropsBuilder<((), (), (), ())>
Create a builder for building TableProps.
On the builder, call .style(...)(optional), .single_row(...)(optional), .single_column(...)(optional), .children(...) to set the values of the fields.
Finally, call .build() to create the instance of TableProps.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for TableProps
impl !Send for TableProps
impl !Sync for TableProps
impl Unpin for TableProps
impl !UnwindSafe for TableProps
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