pub enum MultiSelectScopeKind {
Window,
WindowWithNavWrapX,
Rect,
}Expand description
Scope for box-select and clear-on-empty-click behavior.
Variants§
Window
Scope is the whole window.
Scope is the whole window and enables Dear ImGui’s temporary X-axis navigation wrap helper.
Rect
Scope is the rectangle between BeginMultiSelect() and EndMultiSelect().
Trait Implementations§
Source§impl Clone for MultiSelectScopeKind
impl Clone for MultiSelectScopeKind
Source§fn clone(&self) -> MultiSelectScopeKind
fn clone(&self) -> MultiSelectScopeKind
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 MultiSelectScopeKind
impl Debug for MultiSelectScopeKind
Source§impl Hash for MultiSelectScopeKind
impl Hash for MultiSelectScopeKind
Source§impl PartialEq for MultiSelectScopeKind
impl PartialEq for MultiSelectScopeKind
Source§fn eq(&self, other: &MultiSelectScopeKind) -> bool
fn eq(&self, other: &MultiSelectScopeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MultiSelectScopeKind
impl Eq for MultiSelectScopeKind
impl StructuralPartialEq for MultiSelectScopeKind
Auto Trait Implementations§
impl Freeze for MultiSelectScopeKind
impl RefUnwindSafe for MultiSelectScopeKind
impl Send for MultiSelectScopeKind
impl Sync for MultiSelectScopeKind
impl Unpin for MultiSelectScopeKind
impl UnsafeUnpin for MultiSelectScopeKind
impl UnwindSafe for MultiSelectScopeKind
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