pub struct CardPropsBuilder<TypedBuilderFields = ((), (), ())> { /* private fields */ }
Expand description
Builder for CardProps
instances.
See CardProps::builder()
for more info.
Implementations§
Source§impl<__padded, __class> CardPropsBuilder<((), __padded, __class)>
impl<__padded, __class> CardPropsBuilder<((), __padded, __class)>
pub fn children( self, children: String, ) -> CardPropsBuilder<((String,), __padded, __class)>
Source§impl<__children, __class> CardPropsBuilder<(__children, (), __class)>
impl<__children, __class> CardPropsBuilder<(__children, (), __class)>
pub fn padded( self, padded: bool, ) -> CardPropsBuilder<(__children, (bool,), __class)>
Source§impl<__children, __padded> CardPropsBuilder<(__children, __padded, ())>
impl<__children, __padded> CardPropsBuilder<(__children, __padded, ())>
Trait Implementations§
Auto Trait Implementations§
impl<TypedBuilderFields> Freeze for CardPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: Freeze,
impl<TypedBuilderFields> RefUnwindSafe for CardPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: RefUnwindSafe,
impl<TypedBuilderFields> Send for CardPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: Send,
impl<TypedBuilderFields> Sync for CardPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: Sync,
impl<TypedBuilderFields> Unpin for CardPropsBuilder<TypedBuilderFields>where
TypedBuilderFields: Unpin,
impl<TypedBuilderFields> UnwindSafe for CardPropsBuilder<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