pub struct BoxElem {
pub name: String,
pub orientation: Orientation,
pub argument: f64,
pub spread: BoxSpread,
pub box_width: f64,
pub whisker_width: f64,
pub stroke: Stroke,
pub fill: Color32,
}Expand description
Fields§
§name: StringName of plot element in the diagram (annotated by default formatter).
orientation: OrientationWhich direction the box faces in the diagram.
argument: f64Position on the argument (input) axis – X if vertical, Y if horizontal.
spread: BoxSpreadValues of the box
box_width: f64Thickness of the box
whisker_width: f64Width of the whisker at minimum/maximum
stroke: StrokeLine width and color
fill: Color32Fill color
Implementations§
Trait Implementations§
source§impl PartialEq for BoxElem
impl PartialEq for BoxElem
impl StructuralPartialEq for BoxElem
Auto Trait Implementations§
impl RefUnwindSafe for BoxElem
impl Send for BoxElem
impl Sync for BoxElem
impl Unpin for BoxElem
impl UnwindSafe for BoxElem
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