pub struct TreeEntry {
pub id: TreeItemId,
pub label: Arc<str>,
pub depth: usize,
pub parent: Option<TreeItemId>,
pub has_children: bool,
pub disabled: bool,
}Fields§
§id: TreeItemId§label: Arc<str>§depth: usize§parent: Option<TreeItemId>§has_children: bool§disabled: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for TreeEntry
impl RefUnwindSafe for TreeEntry
impl Send for TreeEntry
impl Sync for TreeEntry
impl Unpin for TreeEntry
impl UnsafeUnpin for TreeEntry
impl UnwindSafe for TreeEntry
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