pub struct TextInput {
pub title: String,
pub description: String,
pub name: String,
pub link: String,
}
Expand description
A representation of the <textInput>
element.
Fields§
§title: String
The label of the Submit button for the text input.
description: String
A description of the text input.
name: String
The name of the text object.
link: String
The URL of the CGI script that processes the text input request.
Trait Implementations§
impl StructuralPartialEq for TextInput
Auto Trait Implementations§
impl Freeze for TextInput
impl RefUnwindSafe for TextInput
impl Send for TextInput
impl Sync for TextInput
impl Unpin for TextInput
impl UnwindSafe for TextInput
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