pub struct FormEntry {
pub entity_id: u64,
pub name: String,
pub input_type: String,
pub value: String,
pub placeholder: String,
pub required: bool,
}Expand description
Form field attributes extracted during HTML parsing.
Fields§
§entity_id: u64§name: String§input_type: String§value: String§placeholder: String§required: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for FormEntry
impl<'de> Deserialize<'de> for FormEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FormEntry
impl RefUnwindSafe for FormEntry
impl Send for FormEntry
impl Sync for FormEntry
impl Unpin for FormEntry
impl UnsafeUnpin for FormEntry
impl UnwindSafe for FormEntry
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