pub struct FormModalProps {
pub modal_content: ModalContent,
pub title: Signal<String>,
pub modal_button: Vec<ModalButton>,
pub classes: Signal<String>,
pub variant: Signal<Variant>,
pub has_error: Signal<bool>,
pub error_message: Signal<String>,
pub error_message_header: Signal<String>,
}
Expand description
Props for the FormModal
component.
§Required Props
- modal_content:
ModalContent
- title:
impl Into<Signal<String>>
- modal_button:
impl Into<Vec<ModalButton>>
§Optional Props
- classes:
impl Into<Signal<String>>
- variant:
impl Into<Signal<Variant>>
- has_error:
impl Into<Signal<bool>>
- error_message:
impl Into<Signal<String>>
- error_message_header:
impl Into<Signal<String>>
Fields§
§modal_content: ModalContent
§title: Signal<String>
§classes: Signal<String>
§variant: Signal<Variant>
§has_error: Signal<bool>
§error_message: Signal<String>
§error_message_header: Signal<String>
Implementations§
Source§impl FormModalProps
impl FormModalProps
Sourcepub fn builder() -> FormModalPropsBuilder<((), (), (), (), (), (), (), ())>
pub fn builder() -> FormModalPropsBuilder<((), (), (), (), (), (), (), ())>
Create a builder for building FormModalProps
.
On the builder, call .modal_content(...)
, .title(...)
, .modal_button(...)
, .classes(...)
(optional), .variant(...)
(optional), .has_error(...)
(optional), .error_message(...)
(optional), .error_message_header(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of FormModalProps
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FormModalProps
impl !RefUnwindSafe for FormModalProps
impl Send for FormModalProps
impl Sync for FormModalProps
impl Unpin for FormModalProps
impl !UnwindSafe for FormModalProps
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<El, T, Marker> IntoElementMaybeSignal<T, Marker> for Elwhere
El: IntoElementMaybeSignalType<T, Marker>,
Marker: ?Sized,
impl<El, T, Marker> IntoElementMaybeSignal<T, Marker> for Elwhere
El: IntoElementMaybeSignalType<T, Marker>,
Marker: ?Sized,
fn into_element_maybe_signal(self) -> ElementMaybeSignal<T>
Source§impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
impl<T, Js> IntoElementMaybeSignalType<T, Element> for Js
fn into_element_maybe_signal_type(self) -> ElementMaybeSignalType<T>
Source§impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for Elwhere
El: IntoElementsMaybeSignalType<T, Marker>,
Marker: ?Sized,
impl<El, T, Marker> IntoElementsMaybeSignal<T, Marker> for Elwhere
El: IntoElementsMaybeSignalType<T, Marker>,
Marker: ?Sized,
fn into_elements_maybe_signal(self) -> ElementsMaybeSignal<T>
Source§impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
impl<T, Js> IntoElementsMaybeSignalType<T, Element> for Js
fn into_elements_maybe_signal_type(self) -> ElementsMaybeSignalType<T>
Source§impl<T> SerializableKey for T
impl<T> SerializableKey for T
Source§impl<T> StorageAccess<T> for T
impl<T> StorageAccess<T> for T
Source§fn as_borrowed(&self) -> &T
fn as_borrowed(&self) -> &T
Borrows the value.
Source§fn into_taken(self) -> T
fn into_taken(self) -> T
Takes the value.