pub struct EChartsNode {
pub name: String,
pub value: Option<u64>,
pub children: Vec<EChartsNode>,
pub item_style: Option<EChartsItemStyle>,
}Expand description
JSON-serializable tree node for ECharts treemap visualization.
Fields§
§name: String§value: Option<u64>§children: Vec<EChartsNode>§item_style: Option<EChartsItemStyle>Trait Implementations§
Source§impl Debug for EChartsNode
impl Debug for EChartsNode
Auto Trait Implementations§
impl Freeze for EChartsNode
impl RefUnwindSafe for EChartsNode
impl Send for EChartsNode
impl Sync for EChartsNode
impl Unpin for EChartsNode
impl UnsafeUnpin for EChartsNode
impl UnwindSafe for EChartsNode
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