pub struct Dropdown {
pub vals: Vec<Val>,
pub default_val: Option<Val>,
pub validation: bool,
pub text: Option<String>,
pub state: DropdownState,
}Fields§
§vals: Vec<Val>§default_val: Option<Val>§validation: bool§text: Option<String>§state: DropdownStateTrait Implementations§
impl StructuralPartialEq for Dropdown
Auto Trait Implementations§
impl Freeze for Dropdown
impl RefUnwindSafe for Dropdown
impl Send for Dropdown
impl Sync for Dropdown
impl Unpin for Dropdown
impl UnsafeUnpin for Dropdown
impl UnwindSafe for Dropdown
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