pub enum ComboBoxHeight {
Small,
Regular,
Large,
Largest,
}Expand description
Height policy for combo box popups.
Variants§
Small
Max roughly 4 items visible.
Regular
Max roughly 8 items visible.
Large
Max roughly 20 items visible.
Largest
As many fitting items as possible.
Trait Implementations§
Source§impl Clone for ComboBoxHeight
impl Clone for ComboBoxHeight
Source§fn clone(&self) -> ComboBoxHeight
fn clone(&self) -> ComboBoxHeight
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ComboBoxHeight
impl Debug for ComboBoxHeight
Source§impl Hash for ComboBoxHeight
impl Hash for ComboBoxHeight
Source§impl PartialEq for ComboBoxHeight
impl PartialEq for ComboBoxHeight
Source§fn eq(&self, other: &ComboBoxHeight) -> bool
fn eq(&self, other: &ComboBoxHeight) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ComboBoxHeight
impl Eq for ComboBoxHeight
impl StructuralPartialEq for ComboBoxHeight
Auto Trait Implementations§
impl Freeze for ComboBoxHeight
impl RefUnwindSafe for ComboBoxHeight
impl Send for ComboBoxHeight
impl Sync for ComboBoxHeight
impl Unpin for ComboBoxHeight
impl UnsafeUnpin for ComboBoxHeight
impl UnwindSafe for ComboBoxHeight
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