Enum arcdps_imgui::ComboBoxHeight
source · pub enum ComboBoxHeight {
Small,
Regular,
Large,
Largest,
}
Expand description
Combo box height mode.
Variants§
Small
Max ~4 items visible.
Regular
Max ~8 items visible.
Large
Max ~20 items visible.
Largest
As many fitting items as possible visible.
Trait Implementations§
source§impl Clone for ComboBoxHeight
impl Clone for ComboBoxHeight
source§fn clone(&self) -> ComboBoxHeight
fn clone(&self) -> ComboBoxHeight
Returns a copy of the value. Read more
1.0.0 · 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 PartialEq for ComboBoxHeight
impl PartialEq for ComboBoxHeight
source§fn eq(&self, other: &ComboBoxHeight) -> bool
fn eq(&self, other: &ComboBoxHeight) -> bool
This method 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 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