pub struct TreeLayoutConfig {
pub node_width: f64,
pub node_height: f64,
pub level_distance: f64,
pub sibling_distance: f64,
pub subtree_distance: f64,
}Expand description
Tree layout configuration
Fields§
§node_width: f64§node_height: f64§level_distance: f64§sibling_distance: f64§subtree_distance: f64Trait Implementations§
Source§impl Clone for TreeLayoutConfig
impl Clone for TreeLayoutConfig
Source§fn clone(&self) -> TreeLayoutConfig
fn clone(&self) -> TreeLayoutConfig
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 TreeLayoutConfig
impl Debug for TreeLayoutConfig
Auto Trait Implementations§
impl Freeze for TreeLayoutConfig
impl RefUnwindSafe for TreeLayoutConfig
impl Send for TreeLayoutConfig
impl Sync for TreeLayoutConfig
impl Unpin for TreeLayoutConfig
impl UnwindSafe for TreeLayoutConfig
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