pub struct Row {
pub id: NodeId,
pub depth: usize,
pub name: String,
pub kind: EntryKind,
pub expanded: bool,
pub is_expandable: bool,
pub error: Option<String>,
pub loading: bool,
}Expand description
One flattened, renderable line of the visible tree.
Fields§
§id: NodeId§depth: usizeNesting level; the root is 0.
name: String§kind: EntryKind§expanded: bool§is_expandable: bool§error: Option<String>Set when this node’s expansion failed, for rendering the reason inline.
loading: boolTrait Implementations§
impl Eq for Row
impl StructuralPartialEq for Row
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnsafeUnpin for Row
impl UnwindSafe for Row
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