#[repr(u8)]pub enum ExpandState {
Collapse = 0,
CollapseReset = 1,
Expand = 2,
ExpandPartial = 3,
Toggle = 4,
}Expand description
Possible state of a tree item regarding the “expanded/collapsed” state
Variants§
Trait Implementations§
Source§impl Clone for ExpandState
impl Clone for ExpandState
Source§fn clone(&self) -> ExpandState
fn clone(&self) -> ExpandState
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 moreimpl Copy for ExpandState
Auto Trait Implementations§
impl Freeze for ExpandState
impl RefUnwindSafe for ExpandState
impl Send for ExpandState
impl Sync for ExpandState
impl Unpin for ExpandState
impl UnsafeUnpin for ExpandState
impl UnwindSafe for ExpandState
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