#[repr(i32)]pub enum TreeSelect {
None = 0,
Single = 1,
Multi = 2,
SingleDraggable = 3,
}
Expand description
Defines the Tree select mode
Variants§
None = 0
Select none
Single = 1
Select single
Multi = 2
Select multi
SingleDraggable = 3
Select single and make draggable
Trait Implementations§
Source§impl Clone for TreeSelect
impl Clone for TreeSelect
Source§fn clone(&self) -> TreeSelect
fn clone(&self) -> TreeSelect
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 TreeSelect
impl Debug for TreeSelect
Source§impl PartialEq for TreeSelect
impl PartialEq for TreeSelect
impl Copy for TreeSelect
impl Eq for TreeSelect
impl StructuralPartialEq for TreeSelect
Auto Trait Implementations§
impl Freeze for TreeSelect
impl RefUnwindSafe for TreeSelect
impl Send for TreeSelect
impl Sync for TreeSelect
impl Unpin for TreeSelect
impl UnwindSafe for TreeSelect
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