pub struct TableDataPropsBuilder<TypedBuilderFields = ((), ())> { /* private fields */ }
Expand description
Builder for TableDataProps
instances.
See TableDataProps::builder()
for more info.
Implementations§
Source§impl<__variant> TableDataPropsBuilder<((), __variant)>
impl<__variant> TableDataPropsBuilder<((), __variant)>
pub fn children( self, children: String, ) -> TableDataPropsBuilder<((String,), __variant)>
Source§impl<__children> TableDataPropsBuilder<(__children, ())>
impl<__children> TableDataPropsBuilder<(__children, ())>
pub fn variant( self, variant: TDVariant, ) -> TableDataPropsBuilder<(__children, (TDVariant,))>
Source§impl<__variant: Optional<TDVariant>> TableDataPropsBuilder<((String,), __variant)>
impl<__variant: Optional<TDVariant>> TableDataPropsBuilder<((String,), __variant)>
Sourcepub fn build(self) -> TableDataProps
pub fn build(self) -> TableDataProps
Finalise the builder and create its TableDataProps
instance
Trait Implementations§
Auto Trait Implementations§
impl<TypedBuilderFields> Freeze for TableDataPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: Freeze,
impl<TypedBuilderFields> RefUnwindSafe for TableDataPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: RefUnwindSafe,
impl<TypedBuilderFields> Send for TableDataPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: Send,
impl<TypedBuilderFields> Sync for TableDataPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: Sync,
impl<TypedBuilderFields> Unpin for TableDataPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: Unpin,
impl<TypedBuilderFields> UnwindSafe for TableDataPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: 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