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