pub struct BubbleSeries {
pub idx: UintVal,
pub order: UintVal,
pub tx: Option<SeriesText>,
pub x_val: Option<CategoryRef>,
pub y_val: Option<ValueRef>,
pub bubble_size: Option<ValueRef>,
pub bubble_3d: Option<BoolVal>,
}Expand description
Bubble series (uses xVal/yVal/bubbleSize).
Fields§
§idx: UintVal§order: UintVal§tx: Option<SeriesText>§x_val: Option<CategoryRef>§y_val: Option<ValueRef>§bubble_size: Option<ValueRef>§bubble_3d: Option<BoolVal>Trait Implementations§
Source§impl Clone for BubbleSeries
impl Clone for BubbleSeries
Source§fn clone(&self) -> BubbleSeries
fn clone(&self) -> BubbleSeries
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 BubbleSeries
impl Debug for BubbleSeries
Source§impl<'de> Deserialize<'de> for BubbleSeries
impl<'de> Deserialize<'de> for BubbleSeries
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 BubbleSeries
impl PartialEq for BubbleSeries
Source§impl Serialize for BubbleSeries
impl Serialize for BubbleSeries
impl StructuralPartialEq for BubbleSeries
Auto Trait Implementations§
impl Freeze for BubbleSeries
impl RefUnwindSafe for BubbleSeries
impl Send for BubbleSeries
impl Sync for BubbleSeries
impl Unpin for BubbleSeries
impl UnwindSafe for BubbleSeries
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