pub enum AplusActiveElementInputType {
File,
Clickable,
Dropdown(String),
}Expand description
Use “file” for file inputs, “clickable” for clickable inputs, and “dropdown” for dropdown. For dropdowns, the available options should be listed after the type indicating “dropdown” in this format: “dropdown:option1,option2,option3”
Variants§
File
Use for file inputs
Clickable
Use for clickable inputs
Dropdown(String)
Use for dropdown menu. Comes with options in a String.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AplusActiveElementInputType
impl RefUnwindSafe for AplusActiveElementInputType
impl Send for AplusActiveElementInputType
impl Sync for AplusActiveElementInputType
impl Unpin for AplusActiveElementInputType
impl UnwindSafe for AplusActiveElementInputType
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