Enum tribble_app::parser::Input
source · [−]pub enum Input {
Text {
input_type: InputType,
},
Select {
options: Vec<SelectOption>,
can_select_multiple: bool,
},
}Expand description
The different types of inputs.
Variants
Text
Fields
input_type: InputTypeThe input’s HTML type.
Simple text.
Select
Fields
options: Vec<SelectOption>The options that the user can select from.
can_select_multiple: boolWhether or not the user can select multiple options.
A select element that provides a dropdown for the user to select a single option.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Input
impl<'de> Deserialize<'de> for Input
sourcefn 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 RefUnwindSafe for Input
impl Send for Input
impl Sync for Input
impl Unpin for Input
impl UnwindSafe for Input
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more