pub struct ViolinStyle {
pub fill: ShapeStyle,
pub outline: ShapeStyle,
pub show_box: bool,
}Expand description
Styling for a violin plot.
Fields§
§fill: ShapeStyleFill of the violin body.
outline: ShapeStyleOutline of the violin body.
show_box: boolWhether to draw the embedded box plot inside the violin.
Trait Implementations§
Source§impl Clone for ViolinStyle
impl Clone for ViolinStyle
Source§fn clone(&self) -> ViolinStyle
fn clone(&self) -> ViolinStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ViolinStyle
impl Debug for ViolinStyle
Auto Trait Implementations§
impl Freeze for ViolinStyle
impl RefUnwindSafe for ViolinStyle
impl Send for ViolinStyle
impl Sync for ViolinStyle
impl Unpin for ViolinStyle
impl UnsafeUnpin for ViolinStyle
impl UnwindSafe for ViolinStyle
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