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