pub struct FormElements {
pub error: Option<El>,
pub elements: Vec<El>,
}
Fields§
§error: Option<El>
The error display element, with CSS_CLASS_ERROR
. This may be placed before
the label in a struct context.
elements: Vec<El>
The input, and any additional controls.
Auto Trait Implementations§
impl Freeze for FormElements
impl !RefUnwindSafe for FormElements
impl !Send for FormElements
impl !Sync for FormElements
impl Unpin for FormElements
impl !UnwindSafe for FormElements
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