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