Struct freya_components::TableRowProps
source · pub struct TableRowProps<'a> {
pub theme: Option<TableThemeWith>,
/* private fields */
}Expand description
TableRow component properties.
Fields§
§theme: Option<TableThemeWith>Theme override.
Implementations§
source§impl<'a> TableRowProps<'a>
impl<'a> TableRowProps<'a>
sourcepub fn builder() -> TableRowPropsBuilder<'a, ((), (), ())>
pub fn builder() -> TableRowPropsBuilder<'a, ((), (), ())>
Create a builder for building TableRowProps.
On the builder, call .theme(...)(optional), .children(...)(optional), .alternate_colors(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of TableRowProps.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for TableRowProps<'a>
impl<'a> !Send for TableRowProps<'a>
impl<'a> !Sync for TableRowProps<'a>
impl<'a> Unpin for TableRowProps<'a>
impl<'a> !UnwindSafe for TableRowProps<'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