pub struct BubbleChart {
pub series: Vec<BubbleSeries>,
pub ax_ids: Vec<UintVal>,
}Expand description
Bubble chart definition.
Fields§
§series: Vec<BubbleSeries>§ax_ids: Vec<UintVal>Trait Implementations§
Source§impl Clone for BubbleChart
impl Clone for BubbleChart
Source§fn clone(&self) -> BubbleChart
fn clone(&self) -> BubbleChart
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 BubbleChart
impl Debug for BubbleChart
Source§impl<'de> Deserialize<'de> for BubbleChart
impl<'de> Deserialize<'de> for BubbleChart
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BubbleChart
impl PartialEq for BubbleChart
Source§impl Serialize for BubbleChart
impl Serialize for BubbleChart
impl StructuralPartialEq for BubbleChart
Auto Trait Implementations§
impl Freeze for BubbleChart
impl RefUnwindSafe for BubbleChart
impl Send for BubbleChart
impl Sync for BubbleChart
impl Unpin for BubbleChart
impl UnwindSafe for BubbleChart
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