pub struct AlertProps { /* private fields */ }
Implementations§
Source§impl AlertProps
impl AlertProps
Sourcepub fn builder() -> AlertPropsBuilder<((), (), (), ())>
pub fn builder() -> AlertPropsBuilder<((), (), (), ())>
Create a builder for building AlertProps
.
On the builder, call .kind(...)
(optional), .title(...)
, .class(...)
(optional), .children(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of AlertProps
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AlertProps
impl RefUnwindSafe for AlertProps
impl Send for AlertProps
impl Sync for AlertProps
impl Unpin for AlertProps
impl UnwindSafe for AlertProps
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