pub struct BarGroup {
pub label: String,
pub bars: Vec<Bar>,
}Expand description
A group of bars rendered together (for grouped bar charts).
Fields§
§label: StringGroup label displayed below the bars.
bars: Vec<Bar>Bars in this group.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BarGroup
impl RefUnwindSafe for BarGroup
impl Send for BarGroup
impl Sync for BarGroup
impl Unpin for BarGroup
impl UnsafeUnpin for BarGroup
impl UnwindSafe for BarGroup
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