pub struct BoxplotGraphics { /* private fields */ }Expand description
Graphics area for box-and-whisker plots. Each series occupies three character rows rendering the five-number summary (min, Q1, median, Q3, max).
Trait Implementations§
Source§impl Clone for BoxplotGraphics
impl Clone for BoxplotGraphics
Source§fn clone(&self) -> BoxplotGraphics
fn clone(&self) -> BoxplotGraphics
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 BoxplotGraphics
impl Debug for BoxplotGraphics
Source§impl GraphicsArea for BoxplotGraphics
impl GraphicsArea for BoxplotGraphics
Source§fn render_row(&self, row: usize, out: &mut RowBuffer)
fn render_row(&self, row: usize, out: &mut RowBuffer)
Fills
out with the cells for the given row index.Source§fn blank_char(&self) -> char
fn blank_char(&self) -> char
The blank character used to fill empty cells (default: space).
Source§fn prepare_render(&mut self)
fn prepare_render(&mut self)
Called before rendering begins. Override for pre-render setup.
Source§fn finish_render(&mut self)
fn finish_render(&mut self)
Called after rendering completes. Override for post-render cleanup.
Auto Trait Implementations§
impl Freeze for BoxplotGraphics
impl RefUnwindSafe for BoxplotGraphics
impl Send for BoxplotGraphics
impl Sync for BoxplotGraphics
impl Unpin for BoxplotGraphics
impl UnsafeUnpin for BoxplotGraphics
impl UnwindSafe for BoxplotGraphics
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