pub struct LaidNode {
pub repo: String,
pub col: usize,
pub row: usize,
pub collapsed: bool,
}Expand description
A laid-out node: placed on a column/row grid.
Fields§
§repo: String§col: usize§row: usize§collapsed: boolWhether this node is currently collapsed (its exclusive subtree hidden).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LaidNode
impl RefUnwindSafe for LaidNode
impl Send for LaidNode
impl Sync for LaidNode
impl Unpin for LaidNode
impl UnsafeUnpin for LaidNode
impl UnwindSafe for LaidNode
Blanket Implementations§
impl<T> Allocation for T
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