Struct freya_components::TableCellProps
source · pub struct TableCellProps<'a> { /* private fields */ }
Expand description
TableCell
component properties.
Implementations§
source§impl<'a> TableCellProps<'a>
impl<'a> TableCellProps<'a>
sourcepub fn builder() -> TableCellPropsBuilder<'a, ((), (), (), ())>
pub fn builder() -> TableCellPropsBuilder<'a, ((), (), (), ())>
Create a builder for building TableCellProps
.
On the builder, call .children(...)
(optional), .onclick(...)
(optional), .order_direction(...)
(optional), .divider(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of TableCellProps
.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for TableCellProps<'a>
impl<'a> !Send for TableCellProps<'a>
impl<'a> !Sync for TableCellProps<'a>
impl<'a> Unpin for TableCellProps<'a>
impl<'a> !UnwindSafe for TableCellProps<'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