pub enum TreeInsert {
First,
Last,
Root,
Sort,
After(HTREEITEM),
}
Expand description
Select the position of a new item that is about to be inserted in a TreeView
Variants§
First
Inserts the item at the beginning of the list.
Last
Inserts the item at the end of the list.
Root
Add the item as a root item
Sort
Inserts the item into the list in alphabetical order
After(HTREEITEM)
Insert the item after the choosen item
Trait Implementations§
Source§impl Clone for TreeInsert
impl Clone for TreeInsert
Source§fn clone(&self) -> TreeInsert
fn clone(&self) -> TreeInsert
Returns a duplicate 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 TreeInsert
impl Debug for TreeInsert
impl Copy for TreeInsert
Auto Trait Implementations§
impl Freeze for TreeInsert
impl RefUnwindSafe for TreeInsert
impl !Send for TreeInsert
impl !Sync for TreeInsert
impl Unpin for TreeInsert
impl UnwindSafe for TreeInsert
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