pub struct Dropdown {
pub value: String,
pub scroll_y: f32,
pub open: bool,
pub hovered: bool,
pub pressed: bool,
pub clicked: bool,
pub item_hovered: Option<String>,
pub item_pressed: bool,
/* private fields */
}Fields§
§value: String§scroll_y: f32§open: bool§hovered: bool§pressed: bool§clicked: bool§item_hovered: Option<String>§item_pressed: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dropdown
impl RefUnwindSafe for Dropdown
impl Send for Dropdown
impl Sync for Dropdown
impl Unpin 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