pub enum MultiSelectBoxSelect {
OneDimensional,
TwoDimensional,
}Expand description
Box-selection geometry for multi-select scopes.
Variants§
OneDimensional
Same x-position/full-row items.
TwoDimensional
Arbitrary item layout, at a higher clipping cost.
Trait Implementations§
Source§impl Clone for MultiSelectBoxSelect
impl Clone for MultiSelectBoxSelect
Source§fn clone(&self) -> MultiSelectBoxSelect
fn clone(&self) -> MultiSelectBoxSelect
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 MultiSelectBoxSelect
impl Debug for MultiSelectBoxSelect
Source§impl Hash for MultiSelectBoxSelect
impl Hash for MultiSelectBoxSelect
Source§impl PartialEq for MultiSelectBoxSelect
impl PartialEq for MultiSelectBoxSelect
Source§fn eq(&self, other: &MultiSelectBoxSelect) -> bool
fn eq(&self, other: &MultiSelectBoxSelect) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MultiSelectBoxSelect
impl Eq for MultiSelectBoxSelect
impl StructuralPartialEq for MultiSelectBoxSelect
Auto Trait Implementations§
impl Freeze for MultiSelectBoxSelect
impl RefUnwindSafe for MultiSelectBoxSelect
impl Send for MultiSelectBoxSelect
impl Sync for MultiSelectBoxSelect
impl Unpin for MultiSelectBoxSelect
impl UnsafeUnpin for MultiSelectBoxSelect
impl UnwindSafe for MultiSelectBoxSelect
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