pub struct TreeRowState {
pub selected: bool,
pub expanded: bool,
pub disabled: bool,
pub depth: usize,
pub has_children: bool,
}Fields§
§selected: bool§expanded: bool§disabled: bool§depth: usize§has_children: boolTrait Implementations§
Source§impl Clone for TreeRowState
impl Clone for TreeRowState
Source§fn clone(&self) -> TreeRowState
fn clone(&self) -> TreeRowState
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 TreeRowState
impl Debug for TreeRowState
impl Copy for TreeRowState
Auto Trait Implementations§
impl Freeze for TreeRowState
impl RefUnwindSafe for TreeRowState
impl Send for TreeRowState
impl Sync for TreeRowState
impl Unpin for TreeRowState
impl UnsafeUnpin for TreeRowState
impl UnwindSafe for TreeRowState
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