pub struct TreeData {
pub tree: Tree,
pub root: NodeIdx,
pub sinks: Vec<Sink>,
pub analysis: Option<SkewAnalysis>,
pub title: String,
}Expand description
Data for a single tree in a comparison visualization.
Fields§
§tree: Tree§root: NodeIdx§sinks: Vec<Sink>§analysis: Option<SkewAnalysis>§title: StringImplementations§
Auto Trait Implementations§
impl Freeze for TreeData
impl RefUnwindSafe for TreeData
impl Send for TreeData
impl Sync for TreeData
impl Unpin for TreeData
impl UnsafeUnpin for TreeData
impl UnwindSafe for TreeData
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